dishcheng/yunxinsms is a Laravel package for laravel网易云短信sdk.
It currently has 0 GitHub stars and 106 downloads on Packagist (latest version 1.0.1).
Install it with composer require dishcheng/yunxinsms.
Discover more Laravel packages by dishcheng
or browse all Laravel packages to compare alternatives.
Last updated
For laravel >= 5.5
composer require dishcheng/yunxinsms:~1.0
php artisan vendor:publish --provider="DishCheng\YunXinSms\YunXinSmsProvider" --tag=yunxinsms
use DishCheng\YunXinSms\YunXinSms;
$params = ['mobile' => 'xxxxxxx', 'templateid' => 'xxxxxxx', 'authCode' => '1111'];
var_dump(YunXinSms::code_post($params));
$params = ['mobiles' => json_encode([xxxxxxx]), 'templateid' => 'xxxxxxx', 'params' => json_encode([xxxx, xxxx, xxxx])];
$response = YunXinSms::notice_post($params);
var_dump($response);