Sending SMS through C#

  • Thread starter Thread starter Guest
  • Start date Start date
Hello

Check http://www.nowsms.com or http://www.kannel.org
These are 2 SMS gateways the first one is commercial and runs under windows
the second is free and open source and runs under linux. You can communicate
with both using HTTP from your c# application. I use kannel (that runs on
linux) with my C# application (that runs on windows) and it is working fine
sending a large number of messages everyday.

Best regards,
Sherif
 
The cheapest way is to contact a mobile phone company and subscribe to E.g.
a SMS webservice. Some of them are (nearly) free if you accept a small
advertisement in the end of the message.

Regards,
Lars-Inge Tønnessen
 
You can send a regular e-mail to send a SMS. The trick is to find the
gateway related to the provider of the cell phone you are trying to reach.
These can help:
· http://www.livejournal.com/tools/textmessage.bml?mode=details
· http://www.notepage.net/smtp.htm
· http://simpleforce.net/fastsms/cellpro.html
· http://www.mymobileguardian.com/MG_Conventions.htm

--

HTH

Éric Moreau, MCSD, Visual Developer - Visual Basic MVP
Conseiller Principal / Senior Consultant
Concept S2i inc.(www.s2i.com)
 
If your SMS provider support service such as Mail2SMS you can use
System.Mail to send SMS message with C#, else you'll have to use third party
products to suport such functionality

Tamir Khason
Want dotNET? Just ask:
"Please, www.dotnet.us !"
 
Back
Top