laravel5.4扩展阿里大于短信


安装 composer require mrgoon/aliyun-sms dev-master 


加载 在config/app的providers中添

加 Mrgoon\AliSms\ServiceProvider::class 同时,可以选择性添加aliases 控制台运行: php artisan vendor:publish 根据新增的aliyunsms.php 文件添加部分环境变量:

ALIYUN_SMS_ENABLE_HTTP_PROXY=false

ALIYUN_SMS_HTTP_PROXY_IP=127.0.0.1

ALIYUN_SMS_HTTP_PROXY_PORT=8888

ALIYUN_SMS_REGION_ID=cn-hangzhou

ALIYUN_SMS_AK=your access key

ALIYUN_SMS_AS=your secret key

ALIYUN_SMS_SIGN_NAME=sign name 


使用 

use Mrgoon\AliSms\AliSms;

$aliSms = new AliSms(); 

$response = $aliSms->sendSms('phone number', 'SMS_code', ['name'=>'value in your template']);


上一篇 下一篇
异常捕获

:)

页面错误!请稍后再试~