sentiger/ali-dy

该包最新版本(0.0.1)没有可用的许可证信息。

0.0.1 2018-11-22 07:56 UTC

This package is auto-updated.

Last update: 2024-09-29 04:43:28 UTC


README

安装

composer require sentiger/ali-dy -vvv

配置

查看阿里大鱼文档

使用

$config    = [
    'accessKeyId'     => 'xxxx',
    'accessKeySecret' => 'xxx',
    'signName'        => 'xxx',
    'templateCode'    => 'xxx',
];
$smsClient = new \Sentiger\AliDy\SMSDy($config);

$res = $smsClient->sendSMS('17602191131', [
    'TemplateParam' => [
        // 这个里面是短信模板中的变量,根据实际情况设置变量名称
        'code' => 'xx'
    ]
]);

print_r($res);