Skip to content

G-Bruin/yunpiansms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

yunpian-sms

基于laravel5.3.*以上版本的系统集成短信发送功能。

安装

  1. 安装包文件
composer require xiaolong/yunpian-sms

配置

Laravel 应用

  1. 注册 ServiceProvider:
XiaoLong\YunpianSMS\YunpianSMSServiceProvider::class,
  1. 创建配置文件:
php artisan vendor:publish
  1. 请修改应用根目录下的 config/yunpian.php 中对应的项即可;

  2. (可选)添加外观到 config/app.php 中的 aliases 部分:

'YunpianSMS' => XiaoLong\YunpianSMS\Facades\YunpianSMS::class,
  1. 在 ENV 中配置以下选项:
SMS_API_KEY=xxx
SMS_SEND_URL=xxx

6.使用

/*
* 手机号
* 短信模板
*/
\YunpianSMS::sendSMS('183xxxx1235',"【xxx】短信内容");

License

MIT