PHPackages                             intonate/laravel-mandrill-driver - 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. intonate/laravel-mandrill-driver

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

intonate/laravel-mandrill-driver
================================

Laravel Mandrill API based mail driver.

v4.0(2y ago)171.1M—8.6%12[1 PRs](https://github.com/intonate/laravel-mandrill-driver/pulls)MITPHPPHP ^8.2

Since Sep 18Pushed 2y ago1 watchersCompare

[ Source](https://github.com/intonate/laravel-mandrill-driver)[ Packagist](https://packagist.org/packages/intonate/laravel-mandrill-driver)[ Docs](https://github.com/intonate/laravel-mandrill-driver)[ RSS](/packages/intonate-laravel-mandrill-driver/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)Dependencies (8)Versions (10)Used By (0)

[![Logo Laravel Mandrill Driver](/logo.svg "Laravel Mandrill Driver")](/logo.svg)

 [![PHPUnit](https://github.com/intonate/laravel-mandrill-driver/workflows/PHPUnit/badge.svg)](https://github.com/intonate/laravel-mandrill-driver/actions/workflows/phpunit.yml?query=workflow:PHPUnit) [![StyleCI](https://camo.githubusercontent.com/5cc56a5f593bb2e72e6f118cbe59fe18f757a0c5a564d8cf2849fcd6a986a2be/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3230393230343536322f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/209204562) [![Total Downloads](https://camo.githubusercontent.com/371a59a80b8b2d74769b2515183a286dde21a812eabd727e6083ce0e5dd0bd6f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696e746f6e6174652f6c61726176656c2d6d616e6472696c6c2d6472697665722e737667)](https://packagist.org/packages/intonate/laravel-mandrill-driver) [![Latest Stable Version](https://camo.githubusercontent.com/c4d78955c106f0f1443f14f6a198eec76d33ec9d51e0a7bdf5d61ebbae4fb85b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696e746f6e6174652f6c61726176656c2d6d616e6472696c6c2d6472697665722e7376673f6c6162656c3d737461626c65)](https://packagist.org/packages/intonate/laravel-mandrill-driver) [![License](https://camo.githubusercontent.com/e1eec31a2f0c372e58a5c3fdda1df8f55114c58e7cfb906b6b795647f18b621a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f696e746f6e6174652f6c61726176656c2d6d616e6472696c6c2d6472697665722e737667)](https://packagist.org/packages/intonate/laravel-mandrill-driver)

The missing Mandrill API based mail driver for Laravel

Note

This is a *community project* and **not** an official Laravel package

Versions
--------

[](#versions)

LaravelInstall11.x`^4.0`10.x`^3.1`9.x`^3.0`8.x`^2.0`7.x`^1.2`6.x`^1.0`Installation Guide for Laravel 8, 9, 10 &amp; 11
------------------------------------------------

[](#installation-guide-for-laravel-8-9-10--11)

1. Install the Package via Composer

Run the following command in your terminal to install the package using Composer:

```
composer require intonate/laravel-mandrill-driver
```

2. Configure Environment Variables

Update your `.env` file with the following environment variables:

```
MAIL_MAILER=mandrill
MANDRILL_SECRET=YourMandrillAPIKey
```

3. Update Service Configuration

Open your `config/services.php` file and add the Mandrill configuration to it:

```
'mandrill' => [
    'secret' => env('MANDRILL_SECRET'),
],
```

4. Configure Mail Driver

In your `config/mail.php` file, add the Mandrill mailer configuration to the "mailers" array:

```
'mailers' => [
    //...

    'mandrill' => [
        'transport' => 'mandrill',
    ],
],
```

Installation Guide for Laravel 6 &amp; 7
----------------------------------------

[](#installation-guide-for-laravel-6--7)

Follow these steps to configure the Mandrill mail driver for Laravel 6 and 7:

1. Configure Environment Variables

Update your `.env` file with the following environment variables:

```
MAIL_DRIVER=mandrill
MANDRILL_SECRET=YourMandrillAPIKey
```

2. Update Service Configuration

Open the `config/services.php` file and insert the Mandrill configuration:

```
'mandrill' => [
    'secret' => env('MANDRILL_SECRET'),
],
```

Credits
-------

[](#credits)

- [Jorge González](https://github.com/scrubmx)
- [Roberto Aguilar](https://github.com/roberto-aguilar)
- [All Contributors](../../contributors)

License
-------

[](#license)

This is an open-sourced software licensed under the [MIT license](LICENSE).

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity50

Moderate usage in the ecosystem

Community14

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 92.6% 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 ~238 days

Recently: every ~282 days

Total

8

Last Release

767d ago

Major Versions

1.0.0 → 2.0.02020-09-10

1.2.2 → 3.0.02022-03-11

3.1.0 → v4.02024-04-12

PHP version history (6 changes)1.0.0PHP ^7.2

2.0.0PHP ^7.3

2.1.1PHP ^7.3|^8.0

1.2.2PHP ^7.2|^8.0

3.0.0PHP ^8.0.2

v4.0PHP ^8.2

### Community

Maintainers

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

---

Top Contributors

[![scrubmx](https://avatars.githubusercontent.com/u/2574295?v=4)](https://github.com/scrubmx "scrubmx (25 commits)")[![McCaulay](https://avatars.githubusercontent.com/u/31845045?v=4)](https://github.com/McCaulay "McCaulay (1 commits)")[![socieboy](https://avatars.githubusercontent.com/u/7442695?v=4)](https://github.com/socieboy "socieboy (1 commits)")

---

Tags

laravellaravel-10laravel-11laravel-packagelaravel-packageslaravel10laravel9mailmailchimpmailermailingmandrillmandrill-apimandrill-api-wrappermandrill-emaillaraveldrivermandrill

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/intonate-laravel-mandrill-driver/health.svg)

```
[![Health](https://phpackages.com/badges/intonate-laravel-mandrill-driver/health.svg)](https://phpackages.com/packages/intonate-laravel-mandrill-driver)
```

###  Alternatives

[therobfonz/laravel-mandrill-driver

Mandrill Driver for Laravel

773.5M](/packages/therobfonz-laravel-mandrill-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[tzsk/sms

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

320244.3k6](/packages/tzsk-sms)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[eventhomes/laravel-mandrillhooks

A simple Mandrill webhook controller to help with events. Compatible with Laravel 5+ and Lumen 5+.

6375.3k](/packages/eventhomes-laravel-mandrillhooks)

PHPackages © 2026

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