Skip to content

聚合短信发送类库,集合了阿里云、腾讯云、移动、助通科技、示远科技 等

License

Notifications You must be signed in to change notification settings

fudaoji/php-sms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dao-sms

聚合短信发送类库,集合了腾讯云、移动、助通科技、示远科技等。

安装

composer require fudaoji/php-sms

用法:

use Dao\Sms\Sms;

$content = '验证码:2323,打死也不能告诉别人。【酷云】';
$mobile = '13511111111';  //单发
//$mobile = ['13511111111', '13422222222']; //群发1
//$mobile = '13511111111,13422222222'; //群发2

$sms = new Sms('账号', '密码', 'shiyuan');   //使用示远短信
$sms = new Sms('账号', '密码', 'zhutong');   //使用助通短信
$sms = new Sms('账号', '密码', 'yunxin');   //使用中国移动短信,记得要先在对应平台设置短信模版
$sms = new Sms('账号', '密码', 'qcloud');   //使用腾讯云,记得要先在对应平台设置短信模版
$res = $sms->send($mobile, $content);
if($res !== true){
    var_dump($sms->getError());  //错误信息
}

About

聚合短信发送类库,集合了阿里云、腾讯云、移动、助通科技、示远科技 等

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages