guoguo882010/aliyun-sms

阿里云 短息发送

1.0.0 2025-08-16 07:15 UTC

This package is auto-updated.

Last update: 2025-08-16 07:18:16 UTC


README

安装

composer require guoguo882010/aliyun-sms

使用

$config = [
            'accessKeyId'     => 'xxxxxxx',
            'accessKeySecret' => 'dddddd',
            'signName'        => '短信签名',
        ];

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

//手机号
$tel = '13333333333';

//阿里云短信模版id
$smsId = 'SMS_411111';

//如果短信没有参数,可以不传
$param = [
    'name' => '名字',
    'age' => '12'
];

//发送短信
$sms->send($tel,$smsId,$param);