/* * 发送短信(阿里云短信发送方式) */ function sms($code,$mobile,$string){ $iClientProfile = DefaultProfile::getProfile("cn-hangzhou", "", ""); $client = new DefaultAcsClient($iClientProfile); $request = new Sms\SingleSendSmsRequest(); $request->setSignName("公司名称");/*签名名称*/ $request->setTemplateCode($code);/*模板code*/ $request->setRecNum($mobile);/*目标手机号*/ $request->setParamString($string);/*模板变量,数字一定要转换为字符串*/ try { $response = $client->getAcsResponse($request); // print_r($response); } catch (ClientException $e) { // print_r($e->getErrorCode()); // echo "<br>"; // print_r($e->getErrorMessage()); } catch (ServerException $e) { // print_r($e->getErrorCode()); // print_r($e->getErrorMessage()); } }
发送短信(阿里云短信发送方式)
最新推荐文章于 2025-06-10 18:08:44 发布
