techhimalayasoft / himalayasms
Laravel 包,用于通过 Himalaya SMS 发送短信
dev-main
2021-07-28 08:31 UTC
Requires
- php: ^7.0|^8.0
- guzzlehttp/guzzle: ^6.3
This package is auto-updated.
Last update: 2024-09-28 15:23:51 UTC
README
https://packagist.org.cn/packages/techhimalayasoft/himalayasms
Himalaya SMS Laravel 包可用于通过 Himalaya SMS 发送短信。
更改配置
php artisan vendor:publish --provider="techhimalayasoft\HimalayaSMS\HimalayaSMSServiceProvider"
如何发送短信
// Using Default use HimalayaSMS;
发送短信
$senderid = '' $campaign = '' $routeid = '' $key = '' $to = '98########'; // Setting Phone Number $text = 'Test message.'; // Setting Message // Send the message $sms_message = HimalayaSMS::send($to, $text, $senderid, $campaign, $routeid, $key); // This will return a pseudo JSON response, you will need to json_decode it.
许可证
MIT 许可证 (MIT)。请参阅许可证文件获取更多信息。