LaravelPackages.net
Acme Inc.
Toggle sidebar
wavorster/clickatell

Clickatell RESTful notifications driver

7
0
About wavorster/clickatell

wavorster/clickatell is a Laravel package for clickatell restful notifications driver. It currently has 0 GitHub stars and 7 downloads on Packagist. Install it with composer require wavorster/clickatell. Discover more Laravel packages by wavorster or browse all Laravel packages to compare alternatives.

Last updated

Clickatell RESTful notifications channel for Laravel 5.3+

Latest Version on Packagist Software License Build Status StyleCI SensioLabsInsight Quality Score Code Coverage Total Downloads

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

Contents

Installation

You can install the package via composer:

composer require laravel-notification-channels/clickatell

You must install the service provider:

// config/app.php
'providers' => [
    ...
    NotificationChannels\Clickatell\ClickatellServiceProvider::class,
],

Setting up the clickatell service

Add your Clickatell user, password and api identifier to your config/services.php:

// config/services.php
...
'clickatell' => [
    'user'  => env('CLICKATELL_USER'),
    'pass' => env('CLICKATELL_PASS'),
    'api_id' => env('CLICKATELL_API_ID'),
],
...

Usage

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

use Illuminate\Notifications\Notification;
use NotificationChannels\Clickatell\ClickatellMessage;
use NotificationChannels\Clickatell\ClickatellChannel;

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

    public function toClickatell($notifiable)
    {
        return (new ClickatellMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}

Available methods

TODO

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Security

If you discover any security related issues, please email [email protected] 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.

Comments