Change-Id: I501fd94dd87dbace3d727c362149959faf019de5
This commit is contained in:
vguanyiwgd 2024-05-30 11:19:56 +08:00
parent 94ccf26308
commit a1689a5dc8
1 changed files with 19 additions and 0 deletions

View File

@ -688,3 +688,22 @@ function send_yzm_atom($cellphone, $yzm) {
$s = gquery("https://cp.fsecity.com/xz/9e0f2d8926b/txgj/txgj_qy/sd_api/?act=send_sms_tpl", $post);
//echo $s;
}
function send_sms_ek($mobile, $msg)
{
$appid = 'svcXhqBFtbvNS6GUVumSM8k0WarOLiOZ';
$appkey = 'ex1JUa3xO3JFXB9k5OqULKYYoJz7A2nV';
$msg = '【云中美食】'.$msg;
$sign = md5($appid.$mobile.$msg.$appkey);
$url = "https://sms.189ek.com/yktsms/send";
$c = curl_init($url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($c, CURLOPT_POST, 1);
curl_setopt($c, CURLOPT_POSTFIELDS, "appid={$appid}&mobile={$mobile}&msg=".urlencode($msg)."&sign={$sign}");
curl_setopt($c, CURLOPT_TIMEOUT, 10);
curl_exec($c);
curl_close($c);
}