mahi-mahi/mailjet-transport

MailJet Transport for Laravel 5.6

Maintainers

Package info

github.com/Mahi-Mahi/mailjet-transport

Homepage

pkg:composer/mahi-mahi/mailjet-transport

Statistics

Installs: 1 046

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 0

0.2 2018-05-09 09:17 UTC

This package is not auto-updated.

Last update: 2026-03-20 10:08:05 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'),
];