dev-master
9999999-devSMS libaray using hisms
MIT
The Requires
- php >=5.3.0
- guzzlehttp/guzzle ^6.2
by shreif
Wallogit.com
2017 © Pedro Peláez
SMS libaray using hisms
Sending sms using Hisms provider for Laravel 5, (*1)
Still Working on it, any feedbacks are appreciated., (*2)
First, you'll need to require the package with Composer:, (*3)
composer require shreifelagamy/hisms:"dev-master"
Then, update config/app.php by adding an entry for the service provider, (*4)
'providers' => [
// ...
Shreifelagamy\Hisms\HiSmsServiceProvider::class
];
Then, register class alias by adding an entry in aliases section, (*5)
'aliases' => [
// ...
'Hisms' => Shreifelagamy\Hisms\HismsFacade::class
];
Finally create config file named hisms.php in config directory or you can use, (*6)
php artisan vendor:publish --tag=config
You need to fill in hisms.php file with the proper credentials, (*7)
return array(
/*
|--------------------------------------------------------------------------
| hisms App Credentials
|--------------------------------------------------------------------------
|
|
*/
'Username' => 'USERNAME',
'Password' => 'PASSWORD',
'SenderName' => 'SENDERNAME',
);
You can send to specific number or multiple numbers in once using this function, but always remember to include the country code with the number EX: 9665xxxxxx, (*8)
\Hisms::sendSMS('message', '96653xxxxxxx');
\Hisms::sendSMS('message', ['96653xxxxxxx', '96653xxxxxxx']);
SMS libaray using hisms
MIT