本版本可以用于使用云片网络短信服务商,基于laravel5.1.*以上版本的系统集成短信发送功能。
- 安装包文件
composer require havenshen/yunpian-sms
- 注册
ServiceProvider
:
HavenShen\YunpianSMS\YunpianSMSServiceProvider::class,
- 创建配置文件:
php artisan vendor:publish
-
请修改应用根目录下的
config/yunpian.php
中对应的项即可; -
(可选)添加外观到
config/app.php
中的aliases
部分:
'YunpianSMS' => HavenShen\YunpianSMS\Facades\YunpianSMS::class,
- 在 ENV 中配置以下选项:
SMS_API_KEY=xxx
SMS_SEND_URL=xxx
SMS_SEND_TEXT=xxx
6.使用
/*
*可以是个string字符串或array字符串群发
*/
\YunpianSMS::sendSMS('139xxxx5926');
MIT