How to send sms via php? [duplicate]
Possible Duplicate:
SMS from web application
Sample code to send Mail via php
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('caffeinated@example.com', 'My Subject', $message);
?>
Is there any codes t开发者_开发技巧o send sms via php code. If there is no option i php. What would be the solution to send sms freely through php. How can i do this. Particularly within in india.
There are few free options. Your best bet would be to subscribe to an SMS service which allows you to send emails in the form of 012345678@smsprovider.net
where 012345678
is the telephone number which you want to send the sms to.
PLease refer these links
http://www.sephiroth.it/tutorials/flashPHP/sms/
http://www.ozekisms.com/index.php?owpn=327
http://www.theukwebdesigncompany.com/articles/article.php?article=1583
http://www.nowsms.com/discus/messages/1/1113.html
[Most] phone numbers have email addresses.
Look about halfway down the page here:
http://www.email-unlimited.com/stuff/send-email-to-phone.htm
Hope that helps!
精彩评论