PHPackages                             dgvai/laravel-notification-channel-isms - 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. dgvai/laravel-notification-channel-isms

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

dgvai/laravel-notification-channel-isms
=======================================

Laravel Notification Channel For iSMS SSLWireless Bangladesh

1.0.0(6y ago)2221MITPHP

Since Jun 8Pushed 6y ago1 watchersCompare

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

READMEChangelog (1)DependenciesVersions (2)Used By (0)

ISMS (SSLCARE) notifications channel for Laravel
================================================

[](#isms-sslcare-notifications-channel-for-laravel)

[![Latest Stable Version](https://camo.githubusercontent.com/af1637533b37e0475e45388645488d8c7ccae959bc943b20fbe72c8e41425fb7/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f762f737461626c65)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![Total Downloads](https://camo.githubusercontent.com/b7f53e3d0e42f37fb7450fa74f880aa80f1a9c4de133881897f4bcedbffecb17/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f646f776e6c6f616473)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![Latest Unstable Version](https://camo.githubusercontent.com/4955895817eedac62224f0e753f99a31f0d6d94277b20db111eae57ca3e38011/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f762f756e737461626c65)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![License](https://camo.githubusercontent.com/cd90981301d3c500989e6e247ab6c35a98efd4a51011edcc31620e8b6cc15253/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f6c6963656e7365)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![Monthly Downloads](https://camo.githubusercontent.com/cb4306d85c0facffc97fc6fb878f857fd3cb985bb0e21e12783bdbe5f438af82/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f642f6d6f6e74686c79)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![Daily Downloads](https://camo.githubusercontent.com/556ff75433daa736a6fe39d9095abfb17bb9b410f0e9b1f5f0d98230d336dcba/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f642f6461696c79)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)[![composer.lock](https://camo.githubusercontent.com/1a6cd9858b4acc30c58db4a6e5ca262156fdccc517ab58a617639d4f262e7067/68747470733a2f2f706f7365722e707567782e6f72672f64677661692f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d69736d732f636f6d706f7365726c6f636b)](https://packagist.org/packages/dgvai/laravel-notification-channel-isms)

This package makes it easy to send sms via [ISMS](https://isms.sslwireless.com) bulk SMS Service (Bangladesh) from SSL Wireless Company, with Laravel 5.5+, 6.x and 7.x.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up your ISMS in configuration](#setting-up-your-configuration)
- [Usage](#usage)
- [Changelog](#changelog)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require dgvai/laravel-notification-channel-isms
```

### Setting up your configuration

[](#setting-up-your-configuration)

Add your ISMS Account credentials to your `config/services.php`:

```
// config/services.php
...
'isms' => [
    'token'         =>  env('ISMS_TOKEN'),     // The API-TOKEN generated from ISMS panel
    'sid'           =>  env('ISMS_SID'),       // The SID of your stakeholder
],
...
```

In order to let your Notification know which phone are you sending to, the channel will look for the `mobile_number` attribute of the Notifiable model (eg. User model). If you want to override this behaviour, add the `routeNotificationForISMS` method to your Notifiable model.

```
public function routeNotificationForISMS()
{
    return '+1234567890';
}
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use DGvai\ISMS\ISMS;
use DGvai\ISMS\ISMSChannel;
use Illuminate\Notifications\Notification;

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

    public function toISMS($notifiable)
    {
        return new ISMS('Your order has been placed!');
    }
}
```

Changelog
---------

[](#changelog)

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

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 46% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Unknown

Total

1

Last Release

2263d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/53512998?v=4)[Jalal Uddin](/maintainers/dgvai)[@dgvai](https://github.com/dgvai)

---

Top Contributors

[![dgvai](https://avatars.githubusercontent.com/u/53512998?v=4)](https://github.com/dgvai "dgvai (2 commits)")

---

Tags

ismslaravel-notification-channelssslwireless

### Embed Badge

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

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

###  Alternatives

[bigbharatjain/laravel-clickatell

This package makes it easy to send sms using clickatell.com with Laravel 5.

1435.2k](/packages/bigbharatjain-laravel-clickatell)[motomedialab/smtp2go

Send emails via API using the first-class email courier SMTP2Go

1323.6k](/packages/motomedialab-smtp2go)

PHPackages © 2026

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