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

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

msgowl/msgowl-laravel-notification-channel
==========================================

MsgOwl notification channel for laravel

v1.0.7(3mo ago)481MITPHPPHP ^8.0|^8.1|^8.2|^8.3|^8.4CI passing

Since May 12Pushed 3mo ago1 watchersCompare

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

READMEChangelog (7)Dependencies (7)Versions (9)Used By (0)

[![Run PHP Unit Tests](https://github.com/boring-dragon/msgowl-laravel-notification-channel/actions/workflows/test.yml/badge.svg)](https://github.com/boring-dragon/msgowl-laravel-notification-channel/actions/workflows/test.yml)

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

[](#installation)

You can install the package via composer:

```
composer require msgowl/msgowl-laravel-notification-channel
```

Setting up your MsgOwl Credentials
----------------------------------

[](#setting-up-your-msgowl-credentials)

Add the environment variables to your `config/services.php`:

```
// config/services.php
...
'msgowl' => [
    'sender_id' => env('MSGOWL_SENDER_ID'),
    'api_key' => env('MSGOWL_API_KEY'),
    'recipients' => env('MSGOWL_RECIPIENTS'),
],
...
```

Add your MsgOwl API Key, Default SenderID and default recipients to your `.env`:

```
// .env
...
    MSGOWL_SENDER_ID=
    MSGOWL_API_KEY=
    MSGOWL_RECIPIENTS=
],
...
```

Usage
-----

[](#usage)

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

```
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlChannel;
use MsgOwl\MsgowlLaravelNotificationChannel\MsgOwlMessage;
use Illuminate\Notifications\Notification;

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

    public function toMsgOwl($notifiable)
    {
        return (new MsgOwlMessage("You are approved by the system"));
    }
}
```

you can add recipients (single value or array)

```
return (new MsgOwlMessage("You are approved by the system"))->setRecipients($recipients);
```

Or You can add a `routeNotificationForMsgOwl` method to your Notifiable model to return the phone number(s):

```
public function routeNotificationForMsgOwl() : string
{
    return $this->mobile;
}
```

Reference
---------

[](#reference)

- [ Msg Owl Api Docs ](https://msgowl.com/docs)

License
-------

[](#license)

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

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance78

Regular maintenance activity

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 89.2% 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 ~140 days

Recently: every ~244 days

Total

8

Last Release

116d ago

PHP version history (2 changes)v1.0PHP ^8.0|^8.1

v1.0.7PHP ^8.0|^8.1|^8.2|^8.3|^8.4

### Community

Maintainers

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

---

Top Contributors

[![boring-dragon](https://avatars.githubusercontent.com/u/28459081?v=4)](https://github.com/boring-dragon "boring-dragon (33 commits)")[![Zouriel](https://avatars.githubusercontent.com/u/117673034?v=4)](https://github.com/Zouriel "Zouriel (4 commits)")

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/msgowl-msgowl-laravel-notification-channel/health.svg)](https://phpackages.com/packages/msgowl-msgowl-laravel-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)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)

PHPackages © 2026

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