luisdalmolin / laravel-mandrill-driver by therobfonz

Mandrill Driver for Laravel
2,883,889
80
5
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-31 03:02:19
Package Statistics
Total Downloads: 2,883,889
Monthly Downloads: 44,863
Daily Downloads: 302
Total Stars: 80
Total Watchers: 5
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