techhimalayasoft / himalayasms
Laravel Package to send SMS via 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: 2026-02-28 18:32:22 UTC
README
https://packagist.org/packages/techhimalayasoft/himalayasms
Himalaya SMS Laravel Package can be used to send SMS via Himalaya SMS.
Changing Config
php artisan vendor:publish --provider="techhimalayasoft\HimalayaSMS\HimalayaSMSServiceProvider"
How to send an SMS
// Using Default use HimalayaSMS;
Send an SMS
$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.
License
The MIT License (MIT). Please see License File for more information.