开发者

Send multiple SMS on BlackBerry

开发者 https://www.devze.com 2023-01-24 14:31 出处:网络
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

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消