uccu / aliyun-sms
阿里云短信服务PHP SDK(2017/11/19)
v1.0.0
2018-01-19 08:29 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-11-09 19:17:10 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();