yiche / ali-dy
There is no license information available for the latest version (1.0) of this package.
1.0
2018-11-23 02:23 UTC
This package is not auto-updated.
Last update: 2025-03-08 02:39:51 UTC
README
package源安装
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);