luisdalmolin / laravel-mandrill-driver by therobfonz

Mandrill Driver for Laravel
2,838,836
80
6
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-03-01 03:02:32
Package Statistics
Total Downloads: 2,838,836
Monthly Downloads: 51,425
Daily Downloads: 2,155
Total Stars: 80
Total Watchers: 6
Total Forks: 38
Total Open Issues: 1

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