How to send SMS to multiple recipients?
-
Hi all, How to send SMS to multiple recipients including an award of their own? i can send SMS to one recipient by using API SmsSendMessage now?
The SmsMessage class has a property named "To." That property is a collection. You can keep adding recipients to it.
Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
-
The SmsMessage class has a property named "To." That property is a collection. You can keep adding recipients to it.
Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
-
Hi all, How to send SMS to multiple recipients including an award of their own? i can send SMS to one recipient by using API SmsSendMessage now?
SmsMessage sms = new SmsMessage(); sms.Body = “Write your text here .”; sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123121” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123132123” ) ); Msg.Send(); I think you can also try that way Hope it will help you