uccu/aliyun-sms

阿里云短信服务PHP SDK(2017/11/19)

v1.0.0 2018-01-19 08:29 UTC

This package is auto-updated.

Last update: 2024-05-09 18:16:14 UTC


README

阿里云短信服务PHP SDK(2017/11/19) 根据SDK轻量版改编 阿里云sdk下载

LICENSE

MIT

use Uccu\AliyunSms\SendSms;

$c = new SendSms;

$c->setAccessKey('###','###');
$c->setParams([
    'PhoneNumbers'=>'###',
    'SignName'=>'###',
    'TemplateCode'=>'###',
    'TemplateParam'=>[
        "code" => '1234'
    ],
]);


echo $c->sendSms();