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

ActiveLibrary

dukstra/clickatell
==================

Clickatell notifications driver

v1.5.2(4y ago)0360MITPHPPHP &gt;=7.1

Since Jul 26Pushed 4y ago1 watchersCompare

[ Source](https://github.com/dukstra/clickatell)[ Packagist](https://packagist.org/packages/dukstra/clickatell)[ Docs](https://github.com/dukstra/clickatell)[ RSS](/packages/dukstra-clickatell/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (3)Dependencies (5)Versions (4)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 dukstra/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 Dukstra\Clickatell\ClickatellMessage;
use Dukstra\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

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

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.

###  Release Activity

Cadence

Every ~9 days

Total

3

Last Release

1736d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5f3545df08ab56976d1e2b7d26f519cb589ef9413b85900c9c0adb6d05f50de7?d=identicon)[dukstra](/maintainers/dukstra)

---

Top Contributors

[![evidencefrank](https://avatars.githubusercontent.com/u/45165183?v=4)](https://github.com/evidencefrank "evidencefrank (2 commits)")[![EvidenceMandizvidza](https://avatars.githubusercontent.com/u/64771774?v=4)](https://github.com/EvidenceMandizvidza "EvidenceMandizvidza (1 commits)")

---

Tags

laravelnotificationssmsclickatell

###  Code Quality

TestsPHPUnit

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/dukstra-clickatell/health.svg)](https://phpackages.com/packages/dukstra-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)
