Any solution? to send a bulksms via now.sms?

Any solution? to send a bulksms via now.sms? SearchSearch
Author Message
paveen a.
New member
Username: Paveen

Post Number: 2
Registered: 06-2007
Posted on Saturday, June 09, 2007 - 12:42 pm:   

Hi,

I just take a look document and I'm thinking if I want to send bulk sms I have to loop posting to http://127.0.0.1:8800/?PhoneNumber=xxxxxxxx&Text=abc+def+ghi

correct ? or have any better way ?

for(1 to 10000){
post_to(http://127.0.0.1:8800/?PhoneNumber=xxxxxxxx&Text=abc+def+ghi);
}

like here ?


Thank you.
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 7189
Registered: 10-2002
Posted on Friday, June 15, 2007 - 10:36 pm:   

The "PhoneNumber" parameter can contain a comma delimited list of recipients. There is no limit to the number of recipients supported imposed by NowSMS ... however, any library that you use for performing the HTTP request may have a URL size limit.

Alternatively, you can create distribution lists via the NowSMS web interface ... and then you just specify the distribution list name in the "PhoneNumber" parameter.

If you want to manage/edit these distribution lists external to the NowSMS web interface, please see the following link for information:

http://blog.nowsms.com/2007/06/editing-distribution-lists-and-address.html

-bn