walthere / aliyun-sms
aliyun simple sms
0.1.1
2019-09-03 03:40 UTC
Requires
- alibabacloud/client: ^1.5
This package is auto-updated.
Last update: 2025-01-29 07:08:27 UTC
README
专用于Laravel的阿里云短信扩展包
##配置
//config/AliyunSms.php return [ "accessKeyId" => "你的accessKeyId", "accessKeySecret" => "你的accessKeySecret", "regionId"=>"你的regionId", ];
##使用
$data = [ 'PhoneNumbers' => '手机号码', 'SignName' => "签名名称", 'TemplateCode' => "模板code", 'TemplateParam' => '模板参数', ]; $result = AliyunSms::send($data);