yiche / ali-dy
此包最新版本(1.0)没有可用的许可信息。
1.0
2018-11-23 02:23 UTC
This package is not auto-updated.
Last update: 2024-09-21 00:40:50 UTC
README
包源安装
composer require sentiger/ali-dy -vvv
配置
查看阿里大鱼文档
使用
$config = [ 'accessKeyId' => 'xxxx', 'accessKeySecret' => 'xxx', 'signName' => 'xxx', 'templateCode' => 'xxx', ]; $smsClient = new \Yiche\AliDy\SMSDy($config); $res = $smsClient->sendSMS('17602191131', [ 'TemplateParam' => [ // 这个里面是短信模板中的变量,根据实际情况设置变量名称 'code' => 'xx' ] ]); var_dump($res);