caikeal / laravel-sms-demo by caikeal

easy to send sms
77
1
2
Package Data
Maintainer Username: caikeal
Maintainer Contact: 546487590@qq.com (caikeal)
Package Create Date: 2016-05-08
Package Last Update: 2017-03-14
Language: PHP
License: MIT
Last Refreshed: 2024-11-08 03:15:25
Package Statistics
Total Downloads: 77
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-sms-demo

StyleCI Build Status Scrutinizer Code Quality Latest Stable Version Total Downloads

支持云通讯和聚合数据

安装

支持Laravel > 5.1.*,php > 5.6.4

composer require keal/laravel-sms

##注册ServiceProvider 在app.php中加入 Caikeal\LaravelSms\sms\SmsServiceProvider::class

##添加Facade 在app.php中加入 'Sms' => Caikeal\LaravelSms\sms\Facades\Sms::class

##配置config php artisan vendor:publish

##使用

  1. \Sms::to("这里填写手机号")->template('YunTongXun', 具体的模版id)->data(["模版变量1内容", "模版变量2内容", ...])->send();
  2. \Sms::to("这里填写手机号")->template('Juhe', 具体的模版id)->data(['模板变量'=>对应的值])->send();