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

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

fomvasss/laravel-notification-channel-sendberry
===============================================

This package makes it easy to send notifications using \[sendberry.com\](https://sendberry.com) with Laravel 9.0+

1.1.0(1y ago)019[1 issues](https://github.com/fomvasss/laravel-notification-channel-sendberry/issues)MITPHPPHP &gt;=8.0

Since Oct 27Pushed 1y ago1 watchersCompare

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

READMEChangelogDependencies (2)Versions (7)Used By (0)

Sendberry notifications channel for Laravel 9.0+
================================================

[](#sendberry-notifications-channel-for-laravel-90)

Here's the latest documentation on Laravel's Notifications System:

[![Latest Version on Packagist](https://camo.githubusercontent.com/3f7c285de345c50d378ff65d072cbee0e822a27c33910494547a519416d7f786/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d73656e6462657272792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/fomvasss/laravel-notification-channel-sendberry)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Quality Score](https://camo.githubusercontent.com/85e4c7a35555190b76118d620f8a16d6a5d1609b115c16eaaaf03f0bfd0b2672/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d73656e6462657272792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/fomvasss/laravel-notification-channel-sendberry)[![Code Coverage](https://camo.githubusercontent.com/4b1e97f05da1a1e6859e780cca5c773f4a8de2a63d838e6d140361beb5602d50/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d73656e6462657272792f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/fomvasss/laravel-notification-channel-sendberry/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/1586c1066637cd8c583a75d74a49a437811777b4ce0a08736b1304d3ce3fd12b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d73656e6462657272792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/fomvasss/laravel-notification-channel-sendberry)

This package makes it easy to send notifications using [sendberry.com](https://www.sendberry.com/) with Laravel 9.0+.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up](#setting-up)
- [Usage](#usage)
    - [Available Message methods](#available-methods)
- [Changelog](#changelog)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

Install this package with Composer:

```
composer require fomvasss/laravel-notification-channel-sendberry
```

The service provider gets loaded automatically. Or you can do this manually:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\Sendberry\SendberryServiceProvider::class,
],
```

### Setting up

[](#setting-up)

Add your Sendberry token, default sender name (or phone number), test mode to your `config/services.php`:

```
// config/services.php
...
'sendberry' => [
    'username'  => env('SENDBERRY_USERNAME'),
    'password'  => env('SENDBERRY_PASSWORD'),
    'auth_key'  => env('SENDBERRY_AUTH_KEY'),
    'from'  => env('SENDBERRY_FROM'),
    'webhook'  => env('SENDBERRY_WEBHOOK'),
    'test_mode'  => env('SENDBERRY_TEST_MODE', false),
],
...
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use NotificationChannels\Sendberry\SendberryMessage;
use NotificationChannels\Sendberry\SendberryChannel;

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

    public function toSendberry($notifiable)
    {
        return (new SendberryMessage())->content("Hello SMS!!!")->test(true);
    }
}
```

In your notifiable model, make sure to include a `routeNotificationForSendberry()` method, which returns a phone number or an array of phone numbers.

```
public function routeNotificationForSendberry()
{
    return $this->phone;
}
```

### Available methods

[](#available-methods)

`from()`: Sets the sender's name or phone number, for test use "Info SMS".

`content()`: Set a content of the notification message.

`date()`: Example argument = `12.05.2020`

`time()`: Example argument = `13:00`

`test()`: Test SMS sending

Changelog
---------

[](#changelog)

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

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)

- [fomvasss](https://github.com/fomvasss)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance42

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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 ~89 days

Recently: every ~111 days

Total

6

Last Release

483d ago

Major Versions

0.0.1 → 1.0.02023-10-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/4f99b460639e7d6871597882226b1e0d9e3055992eac8b22bfcd4f90fbdac95c?d=identicon)[fomvasss](/maintainers/fomvasss)

---

Top Contributors

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

---

Tags

laravelnotificationssmssendberry

### Embed Badge

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

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

###  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)
