Apsara friends free sms api php open-source edition, supports the Group function.
Apsara friends free sms api php open-source edition, supports the Group function.
1. Website space and server space, Supporting Group Sending (if you need to group multiple numbers, separate them with commas (,) (159, 159 ..))
2. Supports data submission in POST or GET mode.
Site interface:
? Username = Feixin mobile phone number & passowrd = Feixin mobile phone password & to = recipient's number & message = SMS content
Or
? U = Feixin mobile phone number & p = Feixin mobile phone password & t = recipient's number & m = text message content
You can also download the source code to your website.
The Code is as follows:
/*
Required PHP extensions: curl and simplexml
*/
Include "libs/fetion. class. php ";
# Set the Apsara stack account password
$ Username = "15900000000 ";
$ Password = "password ";
// Receive number, website space, multiple numbers separated by "," (159..., 159 ..)
$ Sendto = "15900000000,13400000000 ";
// Message content
$ Message = "I am from heqee.com ";
// Instantiate (required)
$ Fetion = new fetion ($ username, $ password );
// Send a Boolean response
$ Sms = $ fetion-> send ($ sendto, $ message );
If ($ sms ){
Echo "OK ";
}
?>
Open source code download