阿里云短信发送实例
项目开发过程中,用户的注册登陆到修改密码,等等都需要对接服务商的短信,来发送短信验证码
在一些业务中,例如商城的订单状态的修改,也会给用户发送订单的状态信息
这里提供阿里云的一个对接实例,更改下accessKeyId,accessKeySecret ,即可整合到自己的业务逻辑里
调用封装的类,发送短信demo
<?php
require_once 'sendsms.php';
$send = new SendSms();
$mobile = 16666666666;//发送短信的手机号
$mb_code = 'SMS_111111111';//模板code
$data = ['storename'=>'测试门店名称','ordersn'=>'SH123456789'];//要发送的参数 数组的键为阿里云短信填写的参数
$json = json_encode($data,JSON_UNESCAPED_UNICODE);
$res = $send->send($mobile,$json,$code);
if ($res->Code == 'OK') {
echo json_encode(['status'=>1,'msg'=>'发送短信成功'],JSON_UNESCAPED_UNICODE);
}else{
echo json_encode(['status'=>1,'msg'=>$res->Message],JSON_UNESCAPED_UNICODE);
}
封装好的发送短信类
封装好的类引入了阿里云短信的sdk
<?php
ini_set("display_errors", "on");
require 'aliyun/vendor/autoload.php';
use Aliyun\Core\Config;
use Aliyun\Core\Profile\DefaultProfile;
use Aliyun\Core\DefaultAcsClient;
use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest;
use Aliyun\Api\Sms\Request\V20170525\SendBatchSmsRequest;
use Aliyun\Api\Sms\Request\V20170525\QuerySendDetailsRequest;
use think\Loader;
// 加载区域结点配置
Config::load();
class SendSms
{
static $acsClient = null;
/**
* 取得AcsClient
*
* @return DefaultAcsClient
*/
public static function getAcsClient() {
//产品名称:云通信流量服务API产品,开发者无需替换
$product = "Dysmsapi";
//产品域名,开发者无需替换
$domain = "dysmsapi.aliyuncs.com";
// TODO 此处需要替换成开发者自己的AK (https://ak-console.aliyun.com/)
$accessKeyId = "你的AccessKeyId"; // AccessKeyId
$accessKeySecret = "你的AccessKeySecret"; // AccessKeySecret
// 暂时不支持多Region
$region = "cn-hangzhou";
// 服务结点
$endPointName = "cn-hangzhou";
if(static::$acsClient == null) {
//初始化acsClient,暂不支持region化
$profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret);
// 增加服务结点
DefaultProfile::addEndpoint($endPointName, $region, $product, $domain);
// 初始化AcsClient用于发起请求
static::$acsClient = new DefaultAcsClient($profile);
}
return static::$acsClient;
}
/**
* 发送短信
* @return stdClass
*/
public function send($phone, $json,$mb_code) {
// 初始化SendSmsRequest实例用于设置发送短信的参数
$request = new SendSmsRequest();
// 必填,设置短信接收号码
$request->setPhoneNumbers($phone);
// 必填,设置签名名称,应严格按"签名名称"填写,请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/sign
$request->setSignName("恬菜园");
// 必填,设置模板CODE,应严格按"模板CODE"填写, 请参考: https://dysms.console.aliyun.com/dysms.htm#/develop/template
$request->setTemplateCode($mb_code);
// 可选,设置模板参数, 假如模板中存在变量需要替换则为必填项
$request->setTemplateParam($json);
// 发起访问请求
$acsResponse = static::getAcsClient()->getAcsResponse($request);
return $acsResponse;
}
}
完整的demo包(含SDK),开箱即用下载
版权属于:本文是原创文章,版权归 吾梦小站 所有。
本文链接:https://nikm.cn/archives/11.html
本站所有原创文章采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。
您可以自由地转载和修改,但请务必注明文章来源并且不可用于商业目的。