SmsTelera Notifications channel for Laravel 5.3+.
onix-solutions/sms-telera is a Laravel package for smstelera notifications channel for laravel 5.3+..
It currently has 0 GitHub stars and 14 downloads on Packagist (latest version v2.1.1).
Install it with composer require onix-solutions/sms-telera.
Discover more Laravel packages by onix-solutions
or browse all Laravel packages to compare alternatives.
Last updated
This package makes it easy to send notifications using sms.telera with Laravel 5.3+.
You can install the package via composer:
composer require onix-solutions/sms-telera
Then you must install the service provider:
// config/app.php
'providers' => [
...
OnixSolutions\SmsTelera\SmsTeleraServiceProvider::class,
],
Add your SmsTelera login, secret key (hashed password) and default sender name (or phone number) to your config/services.php:
// config/services.php
...
'smsctelera' => [
'tk' => env('SMSCTELERA_TK'),
'sender' => env('SMSCTELERA_SENDER')
],
...
If you want use other host than
smsc.telera, you MUST set custom host WITH trailing slash.
// .env
...
SMSCTELERA_HOST=http://www1.smsc.kz/
...
// config/services.php
...
'smsctelera' => [
...
'host' => env('SMSCTELERA_HOST'),
...
],
...
You can use the channel in your via() method inside the notification:
use Illuminate\Notifications\Notification;
use OnixSolutions\SmsTelera\SmsTeleraMessage;
use OnixSolutions\SmsTelera\SmsTeleraChannel;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return [SmsTeleraChannel::class];
}
public function toSmsTelera($notifiable)
{
return SmsTeleraMessage::create("Task #{$notifiable->id} is complete!");
}
}
In your notifiable model, make sure to include a routeNotificationForSmsctelera() method, which returns a phone number
or an array of phone numbers.
public function routeNotificationForSmsctelera()
{
return $this->phone;
}
from(): Sets the sender's name or phone number.
content(): Set a content of the notification message.
sendAt(): Set a time for scheduling the notification message.
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.