havenshen/yunpian-sms

This package is abandoned and no longer maintained. No replacement package was suggested.

云片网络 短信发送,基于Laravel5.1插件。

v1.2 2015-12-22 09:41 UTC

This package is not auto-updated.

Last update: 2020-08-19 04:09:55 UTC


README

Latest Stable Version Total Downloads License

本版本可以用于使用云片网络短信服务商,基于laravel5.1.*以上版本的系统集成短信发送功能。

安装

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

配置

Laravel 应用

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

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

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

6.使用

/*
*可以是个string字符串或array字符串群发
*/
\YunpianSMS::sendSMS('139xxxx5926');

License

MIT