项目作者: Mahi-Mahi

项目描述 :
Laravel 5.6 MailJet Transport
高级语言: PHP
项目地址: git://github.com/Mahi-Mahi/mailjet-transport.git
创建时间: 2018-05-09T07:35:14Z
项目社区:https://github.com/Mahi-Mahi/mailjet-transport

开源协议:MIT License

下载


Laravel 5.6 MailJet Transport

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:

  1. composer require mahi-mahi/mailjet-transport

The package will automatically register itself.

You can publish the migration with:

  1. php artisan vendor:publish --provider="MahiMahi\MailjetTransport\MailjetTransportServiceProvider" --tag="config"

This is the contents of the published config file:

  1. return [
  2. 'public_key' => env('MAILJET_APIKEY_PUBLIC'),
  3. 'private_key' => env('MAILJET_APIKEY_PRIVATE'),
  4. ];