luisdalmolin / laravel-mandrill-driver by therobfonz

Mandrill Driver for Laravel
3,081,839
79
4
Package Data
Maintainer Username: therobfonz
Maintainer Contact: luis.nh@gmail.com (Luis Dalmolin)
Package Create Date: 2019-09-03
Package Last Update: 2025-02-23
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2025-07-29 03:21:42
Package Statistics
Total Downloads: 3,081,839
Monthly Downloads: 52,949
Daily Downloads: 2,316
Total Stars: 79
Total Watchers: 4
Total Forks: 40
Total Open Issues: 2

Laravel Mandrill Driver

This package re-enables Mandrill driver functionality using the Mail facade in Laravel 6+.

To install the package in your project, you need to require the package via composer:

composer require therobfonz/laravel-mandrill-driver

To add your Mandrill secret key, add the following lines to config\services.php

'mandrill' => [
    'secret' => env('MANDRILL_KEY'),
],

As before, you can set the MAIL_DRIVER value in your env to mandrill to enable it

MAIL_DRIVER=mandrill