撸了一个短信发送商的 Laravel5.1 的 package
GitHub 地址 HavenShen/yunpian-sms
有需要用的猿么使用,简单的实现单个短信发送和群发功能。
本版本可以用于使用云片网络短信服务商 (不是推广刚好用到它们的服务而已)、基于 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,
SMS_API_KEY=xxx
SMS_SEND_URL=xxx
SMS_SEND_TEXT=xxx
6.使用
/*
*可以是个 string 字符串或 array 字符串群发
*/
\YunpianSMS::sendSMS('139xxxx5926');
MIT
1
Dannytmp 2015-12-22 19:20:41 +08:00
快换成 5.2 吧
|
4
yunpian 2016-01-06 14:38:49 +08:00
感谢对云片的支持,如果想参与我们的激励计划可以访问 https://www.yunpian.com/api/contributecode.html
|