PHPackages                             aldemeery/bulksms-notification-channel - 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. aldemeery/bulksms-notification-channel

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

aldemeery/bulksms-notification-channel
======================================

BulkSMS notification channel for laravel.

v1.2.0(5y ago)07003[2 PRs](https://github.com/aldemeery/bulksms-notification-channel/pulls)MITPHPPHP &gt;=7.0CI failing

Since Aug 15Pushed 4y ago1 watchersCompare

[ Source](https://github.com/aldemeery/bulksms-notification-channel)[ Packagist](https://packagist.org/packages/aldemeery/bulksms-notification-channel)[ RSS](/packages/aldemeery-bulksms-notification-channel/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (3)Versions (4)Used By (0)

BulkSMS Notification Channel
============================

[](#bulksms-notification-channel)

[BulkSMS](https://www.bulksms.com/) notification channel for laravel.

- [Installation](#installation)
- [Sending SMS Notifications](#sending-sms-notifications)

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

[](#installation)

This package requires `php 7.0` or above, and works with Laravel `5.5` or above.

Open the comman line in your project root directory and enter:

```
composer require aldemeery/bulksms-notification-channel
```

The service provider will automatically be registered. Or you may manually add the service provider in your `config/app.php` file:

```
'providers' => [
    // ...
    Aldemeery\BulkSMS\BulkSMSChannelServiceProvider::class,
];
```

Next, you will need to add a few configuration options to your `config/services.php`configuration file. You may copy the example configuration below to get started:

```
'bulk_sms' => [
    'username'  =>  env('BULK_SMS_USERNAME'),
    'password'  =>  env('BULK_SMS_PASSWORD'),
    'sms_from'  =>  env('BULK_SMS_FROM'),
    'base_url'  =>  env('BULK_SMS_BASEURL'),
],
```

The `sms_from` option is the phone number that your SMS messages will be sent from.

Finally add the `routeNotificationForBulkSms` method in your Model, which will be used to get the phone number the message should be sent to.

```
/**
 * Get the notification routing information for the Bulk SMS driver.
 *
 * @param \Illuminate\Notifications\Notification|null $notification Notification instance.
 *
 * @return  mixed
 */
public function routeNotificationForBulkSms($notification = null)
{
	return  $this->phone_number; // or whatever field name that has the phone number.
}
```

Sending SMS Notifications
-------------------------

[](#sending-sms-notifications)

If a notification supports being sent as an SMS, you should define a `toBulkSms` method on the notification class. This method will receive a `$notifiable` entity and should return a `Aldemeery\BulkSMS\Messages\BulkSMSMessage` instance:

```
/**
 * Get the BulkSMS representation of the notification.
 *
 * @param mixed $notifiable Notifiable instance.
 *
 * @return \Aldemeery\BulkSMS\Messages\BulkSMSMessage
 */
public function toBulkSms($notifiable)
{
	return new BulkSMSMessage('Your verification code is 1234');
}
```

You also need to add the `bulkSms` channel to your notification channels in the `via` method:

```
/**
 * Get the notification channels.
 *
 * @param mixed $notifiable
 *
 * @return array|string
 */
public function via($notifiable)
{
	return ['bulkSms'];
}
```

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~195 days

Total

3

Last Release

2071d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e992716b8d7bb1bf61bfe016d5c55675bb5dc55597d8dde4bb6cc2b61287179e?d=identicon)[aldemeery](/maintainers/aldemeery)

---

Top Contributors

[![aldemeery](https://avatars.githubusercontent.com/u/25695783?v=4)](https://github.com/aldemeery "aldemeery (3 commits)")

---

Tags

bulksmslaravelnotificationslaravelnotificationsbulksms

### Embed Badge

![Health badge](/badges/aldemeery-bulksms-notification-channel/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

321.1k](/packages/usamamuneerchaudhary-filament-notifier)

PHPackages © 2026

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