PHPackages                             notifea/notifea-php-laravel - 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. notifea/notifea-php-laravel

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

notifea/notifea-php-laravel
===========================

Laravel wrapper for PHP language for Notifea services.

1.2.0(4y ago)1189MITPHPPHP ^7.0CI failing

Since May 16Pushed 4y ago1 watchersCompare

[ Source](https://github.com/notifea/notifea-php-laravel)[ Packagist](https://packagist.org/packages/notifea/notifea-php-laravel)[ Docs](https://notifea.com)[ RSS](/packages/notifea-notifea-php-laravel/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (6)Dependencies (8)Versions (7)Used By (0)

notifea-php-laravel
===================

[](#notifea-php-laravel)

Laravel wrapper for PHP language for Notifea services.

[Notifea](https://notifea.com) provides clients very user-friendly way of sending transactional emails and sms to their users.

This package is a Laravel wrapper for [Notifea PHP package](https://github.com/notifea/notifea-php).

Minimum requirements
--------------------

[](#minimum-requirements)

This package will require you to use:

- PHP 7.0 or higher
- [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) 6.0 or higher
- ext-json

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

[](#installation)

To install the SDK you need to be using Composer in your project. To install it please see the [docs](https://getcomposer.org/download/).

After you installed Composer install the SDK

```
composer require notifea/notifea-php-laravel
```

Don't forget to publish configuration file

```
php artisan vendor:publish --provider='Notifea\Laravel\Providers\NotifeaServiceProvider'
```

In the `notifea.php` config file you are only required to set `authorization` config key by setting `NOTIFEA_API_AUTHORIZATION` environment variable. Value can be generated in [access-tokens](https://app.notifea.com/access-tokens) section.

If auto discovery of this package does not work for you for any reason, add `Notifea\Laravel\Providers\NotifeaServiceProvider`to file `config/app.php` to the section `providers`

```
    'providers' => [
        /*
         * Laravel Framework Service Providers...
         */
        Notifea\Laravel\Providers\NotifeaServiceProvider::class,
    ];
```

Usage
-----

[](#usage)

This packages provides a convenient dependency injection layer for `Notifea\Services\EmailService`, `Notifea\Services\SmsService` and `Notifea\Services\SmsSenderService` implemented in our core [Notifea PHP package](https://github.com/notifea/notifea-php) so they can be easily used anywhere in your Laravel application.

One could inject them like this:

```
class UserController
{
    public function sendEmail(Request $request, EmailService $emailService)
    {
        // .. your business logic
        $email = new Email();
        // ...
        $sentEmail = $emailService->sendEmail($email);
    }

    public function sendSms(Request $request, SmsService $smsService)
    {
        // .. your business logic
        $sms = new Sms();
        // ...
        $sentSms = $smsService->sendSms($sms);
    }

    public function createSmsSender(Request $request, SmsSenderService $smsSenderService)
    {
        // .. your business logic
        $smsSender = new SmsSender();
        // ...
        $createdSmsSender = $smsSenderService->createSmsSender($smsSender);
    }

}
```

To provide the quick accessibility of the methods anywhere in your code, there is also `Notifea\Laravel\Facades\Emails`, `Notifea\Laravel\Facades\SMS` and `Notifea\Laravel\Facades\SmsSender`facade available to you.

`Emails` facade contains these methods:

- getEmails()
- getEmail(string $emailUuid)
- sendEmail(Email $email)
- deleteEmail(string $emailUuid)

`SMS` facade contains these methods:

- getSmss()
- getSms(string $smsUuid)
- sendSms(Sms $sms)
- deleteSms(string $smsUuid)

`SmsSender` facade contains these methods:

- getSmsSenders()
- getSmsSender(string $smsSenderUuid)
- createSmsSender(SmsSender $smsSender)
- updateSmsSender(SmsSender $smsSender)
- deleteSmsSender(string $smsSenderUuid)

To find more detailed documentation about each methods, check out our core [Notifea PHP package](https://github.com/notifea/notifea-php)

Community
---------

[](#community)

- [Documentation](https://docs.notifea.com)
- [Report issues](https://github.com/notifea/notifea-php/issues)

Contributing
------------

[](#contributing)

Dependencies are managed through `composer`:

```
$ composer install

```

Tests can be run via phpunit:

```
$ vendor/bin/phpunit

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

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

Recently: every ~91 days

Total

6

Last Release

1822d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/15668038?v=4)[Vladimír Vráb](/maintainers/iNviNho)[@iNviNho](https://github.com/iNviNho)

---

Top Contributors

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

---

Tags

smsemailstransactional smstransactional emailsemail sendingsms sending

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/notifea-notifea-php-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/notifea-notifea-php-laravel/health.svg)](https://phpackages.com/packages/notifea-notifea-php-laravel)
```

###  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)[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)[nutnet/laravel-sms

Package for sending SMS form your Laravel app, includes pre-installed sms providers and your custom.

2526.6k](/packages/nutnet-laravel-sms)[ghanem/laravel-smsmisr

Send SMS and SMS Notification via SMS Misr for Laravel

194.8k](/packages/ghanem-laravel-smsmisr)

PHPackages © 2026

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