PHPackages                             elite50/e50-mail-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. elite50/e50-mail-laravel

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

elite50/e50-mail-laravel
========================

Laravel email facade with support for multiple Mailgun domains.

v1.3.0(7y ago)0526GPL-3.0-onlyPHPPHP &gt;=5.3.0

Since Feb 26Pushed 7y ago13 watchersCompare

[ Source](https://github.com/Crowdskout/e50-mail-laravel)[ Packagist](https://packagist.org/packages/elite50/e50-mail-laravel)[ RSS](/packages/elite50-e50-mail-laravel/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (14)Used By (0)

Elite50 E50Mail Laravel Facade
==============================

[](#elite50-e50mail-laravel-facade)

An extension of [Laravel's](http://laravel.com/) Mail facade allowing for dynamic configuration.

Using the facade
----------------

[](#using-the-facade)

### Install via composer

[](#install-via-composer)

```
composer require elite50/e50-mail-laravel
```

### Include in `app/config/app.php`

[](#include-in-appconfigappphp)

```
'providers' => array (
    ...
    'Elite50\E50MailLaravel\E50MailServiceProvider',
),

'aliases' => array (
    ...
    'E50Mail' => 'Elite50\E50MailLaravel\Facades\E50Mail',
    'E50MailWorker' => 'Elite50\E50MailLaravel\E50MailWorker',
)
```

### Use the facade in your application

[](#use-the-facade-in-your-application)

##### Example:

[](#example)

```
E50Mail::queue(
    // Sender domain (required for Mailgun only)
    'example.com',

    // Views
    ['html' => 'views.html-email'],

    // View data
    ['name' => 'John Doe'],

    // Message data
    [
        'toEmail' => 'john@example.com',
        'toName' => 'John Doe',
        'fromEmail' => 'robot@example.com',
        'fromName' => 'Mail Robot',
        'subject' => 'Action Required!',
        'headers' => [
            'X-Mail-Header' => 'abcd1234',
        ],
    ],

    // Custom driver (DEPRECATED - use custom mail config)
    'mailgun',

    // Custom queue
    'QueueName',

    // Custom mail config
    [
        'driver' => 'smtp',
        'host' => 'smtp.myhost.com',
    ]
);
```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity65

Established project with proven stability

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

Recently: every ~149 days

Total

12

Last Release

2914d ago

Major Versions

v0.1.2 → v1.0.02016-11-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/05c5d3602ce7031364794debcf46ac40bde8f2ef752a47e23346614169b5c9f8?d=identicon)[futurityverb](/maintainers/futurityverb)

---

Top Contributors

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

---

Tags

laravelmailfacademailgun

### Embed Badge

![Health badge](/badges/elite50-e50-mail-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/elite50-e50-mail-laravel/health.svg)](https://phpackages.com/packages/elite50-e50-mail-laravel)
```

###  Alternatives

[boundstate/yii2-mailgun

Mailgun integration for the Yii framework

28168.1k](/packages/boundstate-yii2-mailgun)[modernmcguire/mailthief

A Laravel package to catch outbound mail (similar to Mailtrap) that also provides a UI to view them.

318.9k](/packages/modernmcguire-mailthief)

PHPackages © 2026

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