Looking to hire Laravel developers? Try LaraJobs

laravel-mandrill-driver maintained by protosofia

Description
Mandrill Driver for Laravel 6+
Author
Last update
2020/02/28 18:28 (dev-master)
License
Links
Downloads
3
Tags

Comments
comments powered by Disqus

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