PHPackages                             verifiedit/laravel-notification-channel-clicksend - 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. verifiedit/laravel-notification-channel-clicksend

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

verifiedit/laravel-notification-channel-clicksend
=================================================

ClickSend notification channel for Laravel

2.4.0(1mo ago)010.0k↓38%1MITPHPPHP &gt;=8.0CI passing

Since Jun 17Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/verifiedit/clicksend)[ Packagist](https://packagist.org/packages/verifiedit/laravel-notification-channel-clicksend)[ Docs](https://github.com/verifiedit/clicksend)[ RSS](/packages/verifiedit-laravel-notification-channel-clicksend/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (18)Versions (19)Used By (0)

Please see [this repo](https://github.com/laravel-notification-channels/channels) for instructions on how to submit a channel proposal.

A Boilerplate repo for contributions
====================================

[](#a-boilerplate-repo-for-contributions)

[![Packagist Version (including pre-releases)](https://camo.githubusercontent.com/39bcde5b25f88b4181ef5ed1d18cf951e8b00f551fe9af3a240cdd3ee6c079a5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f766572696669656469742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d636c69636b73656e643f696e636c7564655f70726572656c6561736573267374796c653d666c61742d737175617265)](https://packagist.org/packages/verifiedit/laravel-notification-channel-clicksend)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![PHPUnit tests](https://github.com/verifiedit/clicksend/actions/workflows/tests.yml/badge.svg)](https://github.com/verifiedit/clicksend/actions/workflows/tests.yml)[![Standards](https://github.com/verifiedit/clicksend/actions/workflows/standards.yml/badge.svg?branch=main)](https://github.com/verifiedit/clicksend/actions/workflows/standards.yml)[![Total Downloads](https://camo.githubusercontent.com/3cb62fb300f228881cbb86779eabb305468c648ba2b54640215784d63b0d9390/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766572696669656469742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d636c69636b73656e642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/verifiedit/laravel-notification-channel-clicksend)

This package makes it easy to send notifications using [ClickSend](https://www.clicksend.com/) with Laravel 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x and 13.x.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the ClickSend service](#setting-up-the-ClickSend-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 verifiedit/laravel-notification-channel-clicksend
```

### Setting up the ClickSend service

[](#setting-up-the-clicksend-service)

Add your ClikSend details to your .env:

```
CLICKSEND_DRIVER=clicksend
CLICKSEND_ENABLED=true
CLICKSEND_USERNAME=XYZ
CLICKSEND_APIKEY=XYZ
CLICKSEND_SMS_FROM=XYZ

```

Usage
-----

[](#usage)

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

```
use NotificationChannels\ClickSend\ClickSendChannel;
use NotificationChannels\ClickSend\ClickSendMessage;
use Illuminate\Notifications\Notification;

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

    public function toClickSend($notifiable)
    {
        return (new ClickSendMessage())
            ->setContent("Your {$notifiable->service} account was approved!");
    }
}
```

In order to let your Notification know which phone are you sending/calling to, the channel will look for the phone\_number attribute of the Notifiable model. If you want to override this behaviour, add the routeNotificationForClickSend method to your Notifiable model.

```
public function routeNotificationForClickSend()
{
    return $this->phone_number;
}
```

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)

- [Verified International](https://github.com/verifiedit)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance89

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 63.5% 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 ~134 days

Recently: every ~282 days

Total

14

Last Release

56d ago

Major Versions

1.0.0 → 2.0.02022-06-29

PHP version history (3 changes)1.0.0-beta1PHP &gt;=7.3

1.0.0-beta4PHP &gt;=7.3|^8.0

2.0.0PHP &gt;=8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/311251bff9b30184fcdaa12857975bcd0b7dcd9b409fe37e428bec2a19681f12?d=identicon)[developerdino](/maintainers/developerdino)

---

Top Contributors

[![developerdino](https://avatars.githubusercontent.com/u/747501?v=4)](https://github.com/developerdino "developerdino (40 commits)")[![felipehertzer](https://avatars.githubusercontent.com/u/4554784?v=4)](https://github.com/felipehertzer "felipehertzer (22 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (1 commits)")

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/verifiedit-laravel-notification-channel-clicksend/health.svg)

```
[![Health](https://phpackages.com/badges/verifiedit-laravel-notification-channel-clicksend/health.svg)](https://phpackages.com/packages/verifiedit-laravel-notification-channel-clicksend)
```

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2021.9M4](/packages/laravel-notification-channels-apn)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)

PHPackages © 2026

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