Package Data | |
---|---|
Maintainer Username: | scrubmx |
Maintainer Contact: | scrub.mx@gmail.com (Jorge González) |
Package Create Date: | 2019-09-18 |
Package Last Update: | 2024-04-25 |
Home Page: | https://packagist.org/packages/intonate/laravel-mandrill-driver |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-17 03:09:34 |
Package Statistics | |
---|---|
Total Downloads: | 776,587 |
Monthly Downloads: | 19,499 |
Daily Downloads: | 1,201 |
Total Stars: | 17 |
Total Watchers: | 2 |
Total Forks: | 8 |
Total Open Issues: | 0 |
The missing Mandrill API based mail driver for Laravel
Laravel | Install
------- | ------
6.x | ^1.0
7.x | ^1.2
8.x | ^2.0
9.x | ^3.0
composer require intonate/laravel-mandrill-driver
MAIL_MAILER
and MANDRILL_SECRET
environment variables:MAIL_MAILER=mandrill
MANDRILL_SECRET=YourMandrillAPIKey
config/services.php
file:'mandrill' => [
'secret' => env('MANDRILL_SECRET'),
],
config/mail.php
"mailers" array:'mandrill' => [
'transport' => 'mandrill',
],
MAIL_DRIVER=mandrill
and MANDRILL_SECRET
environment variables.config/services.php
file:'mandrill' => [
'secret' => env('MANDRILL_SECRET'),
],
This is an open-sourced software licensed under the MIT license.