mahi-mahi / mailjet-transport
MailJet Transport for Laravel 5.6
0.2
2018-05-09 09:17 UTC
Requires
Requires (Dev)
- orchestra/testbench: ~3.6
- phpunit/phpunit: ^7.1
This package is not auto-updated.
Last update: 2024-11-15 03:53:44 UTC
README
The mahi-mahi/mailjet-transport
package provides easy to way to use MailJet service for all outgoing emails.
Installation
You can install the package via composer:
composer require mahi-mahi/mailjet-transport
The package will automatically register itself.
You can publish the migration with:
php artisan vendor:publish --provider="MahiMahi\MailjetTransport\MailjetTransportServiceProvider" --tag="config"
This is the contents of the published config file:
return [ 'public_key' => env('MAILJET_APIKEY_PUBLIC'), 'private_key' => env('MAILJET_APIKEY_PRIVATE'), ];