hardywen / phpsms-l4
phpSms for laravel 4
1.0
2016-01-11 07:41 UTC
Requires
- php: >=5.4.0
- toplan/phpsms: ~1.2.0
This package is not auto-updated.
Last update: 2024-11-09 19:33:09 UTC
README
laravel 5 版本请使用 https://github.com/toplan/laravel-sms
#install
composer require 'hardywen/phpsms-l4' '~1.0'
#config config/app.php 两个数组加入:
providers = [ 'Hardywen\PhpSms\PhpSmsServiceProvider' ] aliases = [ 'SMS'=>'Hardywen\PhpSms\Facade\Sms', ]
php artisan config:publish hardywen/phpsms-l4
#exapmle
$result = SMS::make()->to('138xxxxxxxx')->template([ 'Ucpaas' => '1233', 'YunTongXun' => '1211' ])->data(['123123', 10])->content('something')->send(); if($result['success'] == true){ //发送成功,做你想做的事 }else{ //发送失败 }
更多使用方式查看原组件