Hi,
Is there any way to send an SMS to multiple phone numbers?
sendTextMesage in SmsManager takes single string.

sendTextMessage<http://developer.android.com/reference/android/telephony/gsm/SmsManager.html#sendTextMessage%28java.lang.String,%20java.lang.String,%20java.lang.String,%20android.app.PendingIntent,%20android.app.PendingIntent%29>
(String 
<http://developer.android.com/reference/java/lang/String.html>destinationAddress,
 
String <http://developer.android.com/reference/java/lang/String.html>scAddress, 
String <http://developer.android.com/reference/java/lang/String.html> text, 
PendingIntent<http://developer.android.com/reference/android/app/PendingIntent.html>sentIntent,
 
PendingIntent<http://developer.android.com/reference/android/app/PendingIntent.html>deliveryIntent)

Again, 
here<http://stackoverflow.com/questions/4640026/intent-to-send-an-sms-to-multiple-contactcs>someone
 reported that some sets support comma separated list, some semicolon 
separated list. So, comma or semicolon separated list is actually not usable 
for this reason.

The worst case that came in my mind is to call sendTextMessage multiple 
times using a loop.

It would be very helpful if anyone who did similar task can suggest a good 
generic way.

Regards
Sarwar Erfan

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to