i am creating a web application, one of my project module there is a feature of sending sms(password) to the client for authentication...... is it possible to do it... how con i do it also give some reference code and tutorials.am doin my project in dot net(c# and asp) thank you
+1
A:
Most carriers provide an email to sms service which is generally the easiest way to handle this for most common scenarios. You would generally have the user choose their carrier and you send it to the specific domain for that carrier, e.g.:
[email protected]
There is a list of the main Email to SMS Gateway's here: http://en.wikipedia.org/wiki/List_of_carriers_providing_Email_or_Web_to_SMS
For sending and email from c# take a look the SmtpClient
class to send a MailMessage
duckworth
2010-01-13 20:00:46