guoguo882010/baidu-sms

百度短息发送

1.0.0 2025-08-22 06:40 UTC

This package is not auto-updated.

Last update: 2025-09-06 05:29:55 UTC


README

安装

composer require guoguo882010/baidu-sms

使用

//百度账户 SK 和 AK
$config = [
    'accessKey'       => 'xxx',
    'secretAccessKey' => 'xxx',
];

$sms = new \RSHDSDK\BaiDuSMS\BaiDuSMS($config);

//没有参数可以不传
$param = [
    'name'=>'李先生',
    'date'=>'2024-01-01',
];

$sms->send('13333333333','短信签名id','短信模版id',$param);