protosofia/laravel-mandrill-driver is a Laravel package for mandrill driver for laravel 6+.
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version v1.0.2).
Install it with composer require protosofia/laravel-mandrill-driver.
Discover more Laravel packages by protosofia
or browse all Laravel packages to compare alternatives.
Last updated
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