2017 © Pedro Peláez
 

library laravel-port-to-sms

Port2SMS Notifications channel for Laravel 5.3.

image

yna/laravel-port-to-sms

Port2SMS Notifications channel for Laravel 5.3.

  • Saturday, September 16, 2017
  • by yna
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Port2Sms notifications channel for Laravel 5.3+

This package makes it easy to send notifications using Port2SMs with Laravel 5.3+., (*1)

Installation

You can install the package via composer:, (*2)

composer require yna/laravel-port-to-sms

Then you must install the service provider:, (*3)

// config/app.php
'providers' => [
    ...
    Yna\PortToSms\PortToSmsServiceProvider::class,
],

Setting up the PortToSms service

Add your PortToSms account, user, password and default sender name (or phone number) to your config/services.php:, (*4)

// config/services.php
...
'port2sms' => [
    'account' => env('PORT2SMS_ACCOUNT'),
    'user' => env('PORT2SMS_USER'),
    'password' => env('PORT2SMS_PASSWORD'),
    'sender' => env('PORT2SMS_SENDER')
],
...

Usage

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

use Illuminate\Notifications\Notification;
use Yna\PortToSms\PortToSmsMessage;
use Yna\PortToSms\PortToSmsChannel;

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

    public function toPortToSms($notifiable)
    {
        return PortToSmsMessage::create("Task #{$notifiable->id} is complete!");
    }
}

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

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

Available methods

from(): Sets the sender's name or phone number., (*7)

content(): Set a content of the notification message., (*8)

sendAt(): Set a time for scheduling the notification message., (*9)

Security

If you discover any security related issues, please email security@yna.co.il instead of using the issue tracker., (*10)

License

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

The Versions

16/09 2017
16/09 2017