Hi there?
Could someone please tell me how I can send sms messages from a website to cell phones? Are there any components to use.Can anyone suggest some sample code?
Thanks in advance!!!
How can sms messages be sent from a website to cell phones?
Moderator: General Moderators
-
websighteam
- Forum Newbie
- Posts: 2
- Joined: Wed Jan 28, 2004 5:38 am
sweet, i was wondering about this myself
Edit :
5555555555@mobile.mycingular.com is for Cingular Wireless btw..
Edit :
5555555555@mobile.mycingular.com is for Cingular Wireless btw..
Last edited by infolock on Mon Mar 08, 2004 10:55 am, edited 2 times in total.
You can use the php mail()
Every Phone provider has an email type address like this one. This one is for you know who.. AT&T users
$number = "6025551212@mobile.att.net";
mail("$number","$subject","$message","From: Form@Site.com");
Hope it helps.. Or gives you a start..
Every Phone provider has an email type address like this one. This one is for you know who.. AT&T users
$number = "6025551212@mobile.att.net";
mail("$number","$subject","$message","From: Form@Site.com");
Hope it helps.. Or gives you a start..