1. Support mass sending (if you need to send multiple numbers in bulk, separate them with English commas (,) (159..,159..))
2. Support data submission via POST or GET
This website interface:
http ://api.heqee.com/fetion/?username=Fetion mobile number&passowrd=Fetion mobile password&to=recipient number&message=SMS content
or
http://api.heqee.com/fetion/ ?u=Fetion mobile phone number&p=Fetion mobile phone password&t=recipient number&m=text message content
You can also download the source code and put it on your own website
Copy Code The code is as follows:
/*
Required PHP extensions: curl, simplexml
*/
include "libs /fetion.class.php";
#Set Fetion account password
$username="15900000000";
$password="password";
//Receive numbers, use "," for multiple numbers Separate (159..,159..)
$sendto ="15900000000,13400000000";
//Message content
$message = "I am from heqee.com";
//Example (required)
$fetion = new fetion($username,$password);
//Send returns Boolean
$sms = $fetion->send($sendto,$message);
if($sms){
echo "ok";
}
?>
Open source code download http://www.jb51.net/codes/28628 .html
http://www.bkjia.com/PHPjc/322220.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322220.htmlTechArticle1, supports group sending (if you need to send multiple numbers in a group, separate them with English commas (,) (159..,159. .)) 2. Support POST or GET method to submit data. This website interface: http://api.heqee.com/fetion/?username=Fetion mobile...