umuttaymaz/laravel-notification-verimor

This package is abandoned and no longer maintained. No replacement package was suggested.

Verimor SMS for Laravel Notifications

1.0.1 2018-02-28 22:19 UTC

This package is not auto-updated.

Last update: 2020-01-24 17:39:15 UTC


README

Software License Build Status StyleCI Total Downloads

This package makes it easy to send notifications using VerimorSMS with Laravel 5.3+.

Contents

Installation

You can install the package via composer:

composer require umuttaymaz/laravel-notification-verimor

Then you must install the service provider:

// config/app.php
'providers' => [
    ...
    UmutTaymaz\VerimorSMS\VerimorSMSServiceProvider::class,
],

Setting up the VerimorSMS service

Add your Verimor username, password and default sender name to your .env:

VERIMOR_USERNAME=username
VERIMOR_PASSWORD=apiPassword
VERIMOR_HEADER=verifiedHeader

Usage

You can use the channel in your via() method inside the notification:

use Illuminate\Notifications\Notification;
use NotificationChannels\SmscRu\SmscRuMessage;
use NotificationChannels\SmscRu\SmscRuChannel;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [VerimorSMSChannel::class];
    }

    public function toVerimor($notifiable)
    {
        return VerimorSMSMessage::create('This is notification message');
    }
}

In your notifiable model, make sure to include a routeNotificationForVerimor() method, which return the phone number.

public function routeNotificationForVerimor()
{
    return $this->phone;
}

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Security

If you discover any security related issues, please email umut@kreator.com.tr instead of using the issue tracker.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.