tags:

views:

50

answers:

1

Hi!

If I have a list of numbers how can I send an sms message to them using Android SDK.

Thanks.

A: 

A single message can be sent using SmsManager. Also you can find an example here.

Though I think the only way to send SMS to multiple recipients is to loop thru the list and send messages one-by-one.

Asahi