oza75 / laravel-orange-sms-channel
A laravel notification channel to deliver sms using the Orange SMS Api
Installs: 24 380
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 1
Forks: 3
Open Issues: 1
Requires
- php: ^7.4|^8.0
- guzzlehttp/guzzle: ^7.3
- illuminate/support: ^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-11-06 16:52:34 UTC
README
A Laravel Notification Channel to send sms notification to your users in the Middle East and Africa using Orange SMS. More details here https://developer.orange.com/apis/sms.
Installation
You can install the package via composer:
composer require oza75/laravel-orange-sms-channel
You can publish configuration file using:
php artisan vendor:publish --provider="Oza75\OrangeSMSChannel\OrangeSMSServiceProvider"
Usage
First, you need to create an application on orange developer website. Go
to https://developer.orange.com/myapps and create a new application. Once you
created your application, you will get a Client ID
and Client Secret
. These credentials will be used to communicate with Orange
API. Now, you need to add the Orange SMS API to your application. Go
to https://developer.orange.com/apis/sms select your country and then click to
the Use this API
button.
Finally, add a new service in your config/service.php
file.
// file: config/services.php return [ // ...others services 'orange' => [ 'client_id' => env('ORANGE_CLIENT_ID'), 'client_secret' => env('ORANGE_CLIENT_SECRET'), ] ];
Configure your notification
In your notification class, add the orange SMS Channel in the via method and create
a toOrange
method.
use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Oza75\OrangeSMSChannel\OrangeMessage; use Oza75\OrangeSMSChannel\OrangeSMSChannel; class ConfirmationNotification extends Notification { use Queueable; /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [OrangeSMSChannel::class]; } // ...others method here /** * Send sms using Orange API * * @param mixed $notifiable * @return OrangeMessage */ public function toOrange($notifiable):OrangeMessage { return (new OrangeMessage()) ->to('+22600000000') ->from('+22600000000') ->text('Sample text'); } }
Available Message methods
to
(the receiver phone number)from
(the sender phone number)text
(the actual text message)
Configuration file
<?php return [ /**** * The country code that must be prepend to all phone number. * If the phone number already start with the `+`(plus) symbol, * the country code will not be applied. */ 'country_code' => null, /** * You may wish for all SMS sent by your application to be sent from * the same phone number. Here, you may specify a name and a phone number that is * used globally for all SMS that are sent by your application. */ 'from' => [ 'phone_number' => null, 'name' => env('APP_NAME') ] ];
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email abouba181@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.