PHPackages                             evidencefrank/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. evidencefrank/clickatell

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

evidencefrank/clickatell
========================

Clickatell notifications driver

0.1.5(4y ago)05MITPHPPHP &gt;=7.1

Since Aug 15Pushed 4y agoCompare

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

READMEChangelog (1)Dependencies (5)Versions (10)Used By (0)

Clickatell notifications channel for Laravel
============================================

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

This package makes it easy to send notifications using [clickatell.com](https://www.clickatell.com/) with Laravel 5.5+, 6.x, 7.x &amp; 8.x.

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 evidencefrank/clickatell
```

### 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)

To route Clickatell notifications to the proper phone number, define a `routeNotificationForClickatell` method on your notifiable entity:

```
class User extends Authenticatable
{
    use Notifiable;

    /**
     * Route notifications for the Nexmo channel.
     *
     * @param  \Illuminate\Notifications\Notification  $notification
     * @return string
     */
    public function routeNotificationForClickatell($notification)
    {
        return $this->phone_number;
    }
}
```

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)
- [etiennemarais](https://github.com/laravel-notification-channels/clickatell) (forked from this repository)
- [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

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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.

###  Release Activity

Cadence

Every ~258 days

Recently: every ~225 days

Total

8

Last Release

1757d ago

PHP version history (2 changes)0.0.1PHP &gt;=5.6.4

0.1.3PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/6f6aba6ddb1d3691d942bcbb9336eb6ec0727cc0dca1ce5d3431debb46e515ba?d=identicon)[evidencefrank](/maintainers/evidencefrank)

---

Top Contributors

[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (12 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (6 commits)")[![evidencefrank](https://avatars.githubusercontent.com/u/45165183?v=4)](https://github.com/evidencefrank "evidencefrank (4 commits)")[![matsava](https://avatars.githubusercontent.com/u/7782312?v=4)](https://github.com/matsava "matsava (3 commits)")[![themsaid](https://avatars.githubusercontent.com/u/4332182?v=4)](https://github.com/themsaid "themsaid (2 commits)")[![brycelarge](https://avatars.githubusercontent.com/u/6615112?v=4)](https://github.com/brycelarge "brycelarge (2 commits)")[![etiennemarais](https://avatars.githubusercontent.com/u/4479918?v=4)](https://github.com/etiennemarais "etiennemarais (2 commits)")[![innoflash](https://avatars.githubusercontent.com/u/12772919?v=4)](https://github.com/innoflash "innoflash (1 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)")

---

Tags

laravelnotificationssmsclickatell

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)

PHPackages © 2026

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