How To Setup A Sms Sending Website in .net?

1.1k views Asked by At

i have a project on newsletter management system. in asp.net.. i am student and i want to provide such a facility in my project for who is become a member of my website and join a group in that so .. whenever admin put a news or any tips and trick.. it will be sent on that group member .. via sms..

so.. can any one tell me how can i setup sms feature website?

i am allready know about email feature.. but i want to add sms feature in it..

help is required .. do know anything about sms sending feature in .net enter code here

4

There are 4 answers

0
Crowe T. Robot On BEST ANSWER

Zeep Mobile is free:

http://www.zeepmobile.com/

1
Raj More On

Most cell phone carriers have a email to SMS feature.

If someone has an AT&T account and a number of 202-555-1212, you can send an email to [email protected] and AT&T will convert it to an SMS message and send it to a their telephone.

So when a new user creates a profile, you will have to capture their phone number and their carrier as well.

Alternatively, if you do want purely SMS messages, there are several services like the one shown below that will send out SMS messages for you.

http://www.hummingbytes.com/SolutionPages/Solutions_SMS.aspx

0
Tarik On

Use Skype API. It's pretty slick.

0
vivek shukla On

you can use any API of sms providers like way2sms..

HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?
   uid=*****&pwd=****&msg=" + textBox2.Text + "&phone=" + textBox1.Text + "&provider=way2sms");             
HttpWebResponse myrep = (HttpWebResponse)req.GetResponse();