PHPackages                             wavorster/clickatell - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. wavorster/clickatell

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

wavorster/clickatell
====================

Clickatell RESTful notifications driver

07PHP

Since Jan 20Pushed 8y ago1 watchersCompare

[ Source](https://github.com/WAVorster/clickatell)[ Packagist](https://packagist.org/packages/wavorster/clickatell)[ RSS](/packages/wavorster-clickatell/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Clickatell RESTful notifications channel for Laravel 5.3+
=========================================================

[](#clickatell-restful-notifications-channel-for-laravel-53)

[![Latest Version on Packagist](https://camo.githubusercontent.com/dfb1d92d9fee27b630fd3d58e026e8a0f94d8dd488c95397d3cbca6b948112db/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f636c69636b6174656c6c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/clickatell)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/986b34e598f58ca700637e26abdd239218834cdb6cbf119c8caa22d393b726c8/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f636c69636b6174656c6c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/clickatell)[![StyleCI](https://camo.githubusercontent.com/0a3aec4a01a3e22f4672a0202bd61604a5e2d60788ee442acd59695a2ebe351f/68747470733a2f2f7374796c6563692e696f2f7265706f732f36353731343936342f736869656c64)](https://styleci.io/repos/65714964)[![SensioLabsInsight](https://camo.githubusercontent.com/6628b268b2c17a30da6ad2ef57a63684d2b40d38520cc4f2887cdc7ae9089eba/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f38353365653131312d346263662d343935352d383432632d6463643636366461373761312e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/853ee111-4bcf-4955-842c-dcd666da77a1)[![Quality Score](https://camo.githubusercontent.com/8a7a6e770540a675578be0624401d6c3c8c4231b0da0979bc85a284cf1d24e4d/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f636c69636b6174656c6c2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/clickatell)[![Code Coverage](https://camo.githubusercontent.com/39c35563f590bf7fa5df076e66d39820939a3844540c334d9edd19c1166f4d7c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f636c69636b6174656c6c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/clickatell/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/60e3bbf02472f9817975c1984134aa6047b4de5ef0def5258cd4312da080b8a8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f636c69636b6174656c6c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/clickatell)

This package makes it easy to send notifications using [clickatell.com](https://www.clickatell.com/) with Laravel 5.3+.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Clickatell service](#setting-up-the-clickatell-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#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

[](#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
-----

[](#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

[](#available-methods)

TODO

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [etiennemarais](https://github.com/etiennemarais)
- [arcturial](https://github.com/arcturial)
    - For the [Clickatell Client implementation](https://github.com/arcturial/clickatell) which I leverage on for this wrapper

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/47151385?v=4)[UNITE](/maintainers/unite)[@unite](https://github.com/unite)

---

Top Contributors

[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (12 commits)")[![etiennemarais](https://avatars.githubusercontent.com/u/4479918?v=4)](https://github.com/etiennemarais "etiennemarais (2 commits)")[![themsaid](https://avatars.githubusercontent.com/u/4332182?v=4)](https://github.com/themsaid "themsaid (2 commits)")[![casperboone](https://avatars.githubusercontent.com/u/15815208?v=4)](https://github.com/casperboone "casperboone (1 commits)")[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (1 commits)")

### Embed Badge

![Health badge](/badges/wavorster-clickatell/health.svg)

```
[![Health](https://phpackages.com/badges/wavorster-clickatell/health.svg)](https://phpackages.com/packages/wavorster-clickatell)
```

###  Alternatives

[mattketmo/email-checker

Throwaway email detection library

2752.1M5](/packages/mattketmo-email-checker)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
