Hi Friends,
I have a scenario where text message should be sent from PHP Application using native mail() function to user's mobile. This is done by concatenating mobile number with carrier's domain for text messages.
For example: Verizon's domain for sending text message is vtext.com so we send messages to <MOBILE_NUMBER>@vtext.com.
When messages are sent from application, for certain US Mobile carriers (Verizon, Sprint), the message is truncated and only part of the message is shown to user.
And for some US mobile carriers (T Mobile & AT&T), users received complete message that was sent from application.
To solve this problem, i can change the text message domain to mms domain like @vzwpix.com and with this, the users will be able to receive complete message but changing domain names for all the contacts in DB (thousands of them) does not seem to be good idea to me.
The question i have here is: Can this problem be handled within the application? If so, please let me know with some examples, if possible.
Thanks in advance for your time and help !!