Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

send free SMS from C# + ASP.NET

Tags:

c#

asp.net

sms

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?

like image 598
Red Swan Avatar asked Sep 08 '09 07:09

Red Swan


3 Answers

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 SMS from web application for more details or try https://stackoverflow.com/questions/tagged/c%23%20sms

like image 200
David Glenn Avatar answered Oct 04 '22 11:10

David Glenn


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.

like image 45
Preet Sangha Avatar answered Oct 04 '22 11:10

Preet Sangha


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.

like image 43
Kosi2801 Avatar answered Oct 04 '22 12:10

Kosi2801