Hello,
http://www.developershome.
Main Topics
Browse All TopicsSee the problem is that it works fine for single SMS but not for Bulk SMS
So plz can any one help me out so that I should be able to BULK SMS to Mobiles from PC
connected to BROADBAND to send SMS . A code snippet would do
Thanx a Lot
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hello,
http://www.developershome.
Drop this into a loop and access a database for your numbers.
AT+CSMS=0
// Only <mo> and <mt> SM's are supported
+CSMS: 1,1,0
OK
Important Note
If card returns ERROR, then modem does not support SMS. Please try updating with the latest GSM Activation Kit for GSM-Ready, or for GSM-Only.
AT+CPMS?
AT+CPMS: "SM",1,10,"ME",4,5
OK
//Swap memories
AT+CPMS="ME","SM"
OK
//select text-mode (DEFAULT!!)
AT+CMGF=1
OK
//Enter SCA number (for Belgium, Proximus). This number is operator and country dependent. Please check with your local provider.
AT+CSCA="+3275161616"
OK
//Enable the reception of SM's
AT+CNMI=1,1,0,0,0
//a SM is received and stored in ME, index 3
+CMTI: "ME",3
//Make sure memory is OK
AT+CPMS="ME"
OK
//Read message
AT+CMGR=3
+CMGR: "REC UNREAD",,,
Hello world
OK
//Read all messages in ME
AT+CMGL=4
// --> Only index 3 en 5 are used
+CMGL: 3,"REC UNREAD",,, ;
Hello world
//Send message to "075261001"
AT+CMGS="075261001"
> Honey….Let me bulk you!!^Z (Ctrl+Z to finish and send the message)
//OK, message gone
+CMGS: 3
OK
>> A code snippet would do Thanx a Lot
To quote from http://www.developershome.
"To send an SMS message "Hello" to phone number 12345678, you will make a http get/post in your program, something like http://www.xxgateway.com/s
The exact command to use depends on the SMS gateway you used. You should be able to find the documentation on the SMS gateway's website.
Business Accounts
Answer for Membership
by: HippyWarlockPosted on 2004-03-17 at 22:56:14ID: 10621559
This may help: e.com/Prog ramming/ Wi reless_Pro gramming/G SM/Q_20751 039.html#s ignup
http://www.experts-exchang
Peace