1, to support mass (if you need to mass multiple numbers in English comma (,) separated (159..,159 ...))
2, support post or Get method submission data
This site interface:
Http://api.heqee.com/fetion/?username= Flying Letter Mobile phone number &passowrd= fly the phone password &to= receiver number &message= SMS content
Or
Http://api.heqee.com/fetion/?u= Flying Letter Mobile phone number &p= fly the phone password &t= receiver number &m= SMS content
You can also download source stacking on your own website
Copy Code code as follows:
<?php
/*
PHP Extensions required: curl, SimpleXML
*/
Include "libs/fetion.class.php";
#设置飞信帐号密码
$username = "15900000000";
$password = "password";
Receive number, multiple number "," Separate (159..,159 ...)
$sendto = "15900000000,13400000000";
Message content
$message = "I am from heqee.com";
Instantiated (required)
$fetion = new Fetion ($username, $password);
Send return Boolean
$sms = $fetion->send ($sendto, $message);
if ($sms) {
echo "OK";
}
?>
Open Source code Download http://www.jb51.net/codes/28628.html