可能重复:
SMS from web application
任何人都可以建议我如何通过我的网站发送短信,这是一个很好的
答案 0 :(得分:0)
您可以在您的网站中集成一些像CellTrust这样的短信服务,您就可以发送短信。我做了那样的微笑任务......
public function smsSend($number,$temppwd)
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL,"https://gateway.celltrust.net/TxTNotify/TxTNotify?");
curl_setopt($curl, CURLOPT_POSTFIELDS, "Username=xxxxx&Password=xxxx&CustomerNickname=xxxxxx&PhoneDestination=".$number."&%20CarrierId%20=5&Message=Hello, Your verification code is: ".$temppwd.". Thank you&XMLResponse=true");
curl_setopt($curl, CURLOPT_HEADER, TRUE);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
$head=curl_exec ($curl);
$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
}