Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SMS Library in C# [closed]

Tags:

c#

sms

gateway

I need to develop an application that sends SMS to the users that are interested to get the updates about the website.

I am looking for Library in C# which is useful to integrate with my application. The Library can be GSM Modem dependent or free service which i can make use of it.

Please can anyone suggest the library or SMS gateway which can be integrated with C# application.

like image 982
Prasad Avatar asked Jul 28 '09 17:07

Prasad


1 Answers

Have you tried using the System.Net.Mail functions to send mail to the email corresponding to the phone number?

e.g. [email protected]

(List of email domains here: http://www.tech-recipes.com/rx/939/sms_email_cingular_nextel_sprint_tmobile_verizon_virgin/)

EDIT: even bigger list here http://en.wikipedia.org/wiki/SMS_gateway

EDIT 2: Bigger list here, Wikipedia link no longer has as much information http://www.ukrainecalling.com/email-to-text.aspx

like image 127
NickAldwin Avatar answered Oct 05 '22 22:10

NickAldwin