sentiger/ali-dy

There is no license information available for the latest version (0.0.1) of this package.

0.0.1 2018-11-22 07:56 UTC

This package is auto-updated.

Last update: 2024-08-29 04:31:44 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);