tags:

views:

2123

answers:

4

Hello guys, I want to use any free SMS service to send the SMS (free) from my application. I am developing the application in C# + asp.net. How can I do the code for that. Does anyone have any examples?

+1  A: 

It depends where you are based. SMS is likely to be a country specific thing, and thus an telco provided thing, and ultimately they're not likely to be free as the telecos make tonnes of cash from SMS. Even if you find a free service (there seems to be a lot in Western Europe) you contend with the service provider not providing an API or if you resort to screen scraping it will likely be against the sites' usage policies.

Preet Sangha
A: 

If you manage to find a SMS service which allows you to send that many SMSs via an API then the provider should also have somewhere this API documented. If there is just a Webinterface then you have to simulate the HTTP communication (most probably by filling out form-fields) with your application. You have to find out what form-fields and login-data the SMS service expects and build your HTTP request accordingly.

Providing code for that is not possible since every SMS provider has its own interface and the communication for that has to be aligned for that.

Kosi2801
+1  A: 

Most mobile/cell providers provide a free email to SMS gateway so if you know the phone number's service provider and you're only catering to a select market (e.g. UK only) then that may be an option.

See http://stackoverflow.com/questions/432944/sms-from-web-application/433201#433201 for more details or try http://stackoverflow.com/questions/tagged/c%23%20sms

David G