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

ActiveLibrary

enniel/laravel-epochta-notification-channel
===========================================

Epochta Notification Driver

v0.0.1(9y ago)01.5kMITPHPPHP &gt;=5.5.9

Since Oct 20Pushed 9y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

Epochta notification channel for Laravel 5.3
============================================

[](#epochta-notification-channel-for-laravel-53)

This package makes it easy to send notifications using [Epochta aka Atompark](https://www.massmailsoftware.com/) with Laravel 5.3.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the configuration](#setting-up-the-configuration)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Testing](#testing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install this package via composer:

```
composer require enniel/laravel-epochta-notification-channel
```

Next add the service provider to your `config/app.php`:

```
...
'providers' => [
    ...
     NotificationChannels\Epochta\EpochtaServiceProvider::class,
],
...
```

### Setting up the configuration

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

Add your private and public keys to your `config/services.php`:

```
// config/services.php
...
'epochta' => [
    'sms' => [
        'public_key' => env('EPOCHTA_SMS_PUBLIC_KEY'),
        'private_key' => env('EPOCHTA_SMS_PRIVATE_KEY'),
    ],
],
...
```

Usage
-----

[](#usage)

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

```
use NotificationChannels\Epochta\EpochtaChannel;
use NotificationChannels\Epochta\EpochtaMessage;
use Illuminate\Notifications\Notification;

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

    public function toEpochta($notifiable)
    {
        return (new EpochtaMessage())
            ->text('message text')
            ->sender('test');
    }
}
```

In order to let your Notification know which phone number you are targeting, add the `routeNotificationForEpochta` method to your Notifiable model.

### Available message methods

[](#available-message-methods)

- `from()`: The identity of the sender.
- `text()`: The text of the message.
- `to()`: Recipient's phone number.
- `at()`: Sending a message at a specified time.
- `life()`: Life time SMS (0 = maximum, 1, 6, 12, 24 hours).
- `type()`: For Russia it is possible to specify the type of distribution type parameter.

Testing
-------

[](#testing)

```
$ composer test
```

Credits
-------

[](#credits)

- [Evgeni Razumov](https://github.com/enniel)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

3491d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4205ff91a30f69f387f3f31465b7ff65f389839fc2f3215cd0b1bd9ba1727a0c?d=identicon)[enniel](/maintainers/enniel)

---

Top Contributors

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

---

Tags

sms epochta

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

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

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

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[telnyx/telnyx-php

Official Telnyx PHP SDK — APIs for Voice, SMS, MMS, WhatsApp, Fax, SIP Trunking, Wireless IoT, Call Control, and more. Build global communications on Telnyx's private carrier-grade network.

35636.1k2](/packages/telnyx-telnyx-php)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10138.4k](/packages/gr8shivam-laravel-sms-api)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[ardakilic/mutlucell

Mutlucell SMS API wrapper for sending sms text messages for Laravel

457.3k](/packages/ardakilic-mutlucell)

PHPackages © 2026

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