Deprecated
Laravel SMS Notification Channel - JustSend.pl Driver
An JustSend.pl driver for kduma/sms package
Install
Via Composer
$ composer require kduma/sms-driver-justsend
In Laravel 5.6, service provider is automatically discovered. If you don't use package discovery,
add the Service Provider to the providers array in config/app.php:
KDuma\SMS\Drivers\JustSend\JustSendServiceProvider::class,
Create new channel or reconfigure existing in sms.php config file:
'justsend' => [
'driver' => 'justsend',
'key' => env('SMS_JUSTSEND_KEY'),
'sender' => 'INFORMACJA',
'eco' => true,
],
Available Options
| Option | Default | Description |
|---|---|---|
| key | null | Api Key for justsend.pl |
| sender | null | Sender name |
| eco | true | Send eco message |