luisdalmolin / laravel-mandrill-driver by therobfonz

Mandrill Driver for Laravel 9+
2,284,922
78
5
Package Data
Maintainer Username: therobfonz
Maintainer Contact: luis.nh@gmail.com (Luis Dalmolin)
Package Create Date: 2019-09-03
Package Last Update: 2024-04-02
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:23:27
Package Statistics
Total Downloads: 2,284,922
Monthly Downloads: 53,267
Daily Downloads: 2,352
Total Stars: 78
Total Watchers: 5
Total Forks: 38
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