Hitendra
Hitendra

Reputation: 3226

Send multiple SMS on BlackBerry

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

Answers (2)

Xiangdong
Xiangdong

Reputation: 254

Maybe you can use MultipartMessage to send large messages.

Upvotes: 0

Vivart
Vivart

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

Related Questions