protosofia / laravel-mandrill-driver
Mandrill Driver for Laravel 6+
v1.0.2
2020-02-28 17:28 UTC
Requires
- php: ^7.3
- guzzlehttp/guzzle: ^6.3
- illuminate/support: ^6.0
Requires (Dev)
- mockery/mockery: ~1.0
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2025-01-29 03:49:36 UTC
README
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