LaravelPackages.net
Acme Inc.
Toggle sidebar
dishcheng/yunxinsms

laravel网易云短信sdk

106
0
1.0.1
About dishcheng/yunxinsms

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

网易云信短信sdk

For laravel >= 5.5

官方文档

composer require dishcheng/yunxinsms:~1.0

php artisan vendor:publish --provider="DishCheng\YunXinSms\YunXinSmsProvider" --tag=yunxinsms

Usage:

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);

Star History Chart