guoguo882010 / aliyun-sms
阿里云 短息发送
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/guoguo882010/aliyun-sms
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-10-16 07:41:21 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);