sms

Tamer_Ahmed

Centurion
Joined
Dec 20, 2003
Messages
159
Location
Egypt
hi all
there's alot of site let the user send sms and logos and ring tones to there mobile device
does anyone have an idea about what do i need to do this
 
sometimes you can send it as an email to a special address, but that might be better when the site is for them to send text msgs to you.
 
We use a service from a company called sms2email (http://www.sms2email.com) to send SMS messages. (I've no connection with this company otherwise, and I'm sure others offer a similar service). We buy SMS credits from them, and our application loads a web page using 2 lines of code like the following:

System.Net.WebClient client = new System.Net.WebClient();

client.DownloadFile("http://www.sms2email.com/sms/postmsg.php?username=myusername&password=mypassword&orig=Name to appear on SMS message&to_num=<phone number>&message="+message,"c:\\temp.txt");

Regards
Richard
 
Back
Top