Clickatell notifications driver
9,185
9
4
Package Data
Maintainer Username: laravel-notification-channels
Maintainer Contact: hello@etiennemarais.co.za (Etienne Marais)
Package Create Date: 2016-08-15
Package Last Update: 2022-07-05
Home Page: https://laravel-notification-channels.com
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:03:00
Package Statistics
Total Downloads: 9,185
Monthly Downloads: 136
Daily Downloads: 2
Total Stars: 9
Total Watchers: 4
Total Forks: 18
Total Open Issues: 2

Clickatell 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

In Laravel 5.5+ the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

'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 hello@etiennemarais.co.za 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.