Send multiple SMS on BlackBerry
I am able to send a single SMS on BlackBerry, but whe开发者_高级运维n I try to send more than one SMS, only the first is sent.
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);
}
Maybe you can use MultipartMessage to send large messages.
精彩评论