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

来源:互联网 发布:东湖高新人工智能峰会 编辑:程序博客网 时间:2024/06/06 16:36
/* * 发送短信(阿里云短信发送方式) */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());   }}
原创粉丝点击