发送短信(阿里云短信发送方式)

Posted wpfphp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发送短信(阿里云短信发送方式)相关的知识,希望对你有一定的参考价值。

/*
 * 发送短信(阿里云短信发送方式)
 */
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());
   

以上是关于发送短信(阿里云短信发送方式)的主要内容,如果未能解决你的问题,请参考以下文章

使用阿里云的短信服务发送短信

thinkphp5 阿里云短信 发送多参数的短信

发送短信验证码-node+阿里云短信

哪位大神,短信接口使用的是阿里云的短信验证平台

阿里云短信验证_基于阿里云OpenAPI实现

(二十三)ATP应用测试平台——阿里云短信发送功能集成