mahi-mahi/mailjet-transport

MailJet Transport for Laravel 5.6

0.2 2018-05-09 09:17 UTC

This package is not auto-updated.

Last update: 2024-05-03 01:16:23 UTC


README

Latest Version on Packagist Total Downloads

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'),
];