walthere/aliyun-sms

aliyun simple sms

0.1.1 2019-09-03 03:40 UTC

This package is auto-updated.

Last update: 2024-09-29 06:20:15 UTC


README

专用于Laravel的阿里云短信扩展包

##配置

//config/AliyunSms.php
return [
    "accessKeyId" => "你的accessKeyId",
    "accessKeySecret" => "你的accessKeySecret",
    "regionId"=>"你的regionId",
];

##使用

 $data = [
            'PhoneNumbers' => '手机号码',
            'SignName' => "签名名称",
            'TemplateCode' => "模板code",
            'TemplateParam' => '模板参数',      
        ];
 $result = AliyunSms::send($data);