Reputation: 3226
I am able to send a single SMS on BlackBerry, but when I try to send more than one SMS, only the first is sent.
Upvotes: 0
Views: 998
Reputation: 15313
AFAIK you can send sms to multiple numbers using loop.
you have the code to send single sms,
for (int i = 0; i < mobileNumbers.length; i++) {
//method for sending single sms
sendSMS(mobileNumbers[i],msg);
}
Upvotes: 1