I am sending sms programatically using the code
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";
PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);
PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,
new Intent(DELIVERED), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
But If the mobile has postpaid network connection, message is not sending. How to handle this?
I have had this same problem with my app. However, I figured out that if the message count is more than 160, sms.sendTextMessage() cannot work. ie. You have to divide the message into parts and then sms.sendMultiPartTextMessage(). Only English Characters will be <=160 to send text message. If you are using any special characters, the count(length) should be <=70. The following is the my code. I am using Arabic Characters.
I hope this helps.