2017 © Pedro Peláez
 

library maildocker-laravel-driver

Maildocker mail driver for Laravel

image

guissilveira/maildocker-laravel-driver

Maildocker mail driver for Laravel

  • Monday, July 11, 2016
  • by guissilveira
  • Repository
  • 1 Watchers
  • 0 Stars
  • 272 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 3 Versions
  • 13 % Grown

The README.md

Install

Require this package with composer using the following command:, (*1)

composer require guissilveira/maildocker-laravel-driver

After updating composer, add the service provider to the providers array in config/app.php, (*2)

Guissilveira\MailDrivers\Maildocker\MaildockerServiceProvider::class,

You will also need to add the Maildocker API Key and API Secret settings to the array in config/services.php and set up the environment key, (*3)

'maildocker' => [
    'api_key' => env('MAILDOCKER_API_KEY'),
    'api_secret' => env('MAILDOCKER_API_SECRET'),
],

```bash MAILDOCKER_API_KEY=Your_api_key_here MAILDOCKER_API_SECRET=Your_api_secret_here, (*4)


Finally you need to set your mail driver to `maildocker`. You can do this by changing the driver in `config/mail.php` ```php 'driver' => env('MAIL_DRIVER', 'maildocker'),

Or by setting the environment variable MAIL_DRIVER in your .env file, (*5)

MAIL_DRIVER=maildocker

If you need to pass any options to the guzzle client instance which is making the request to the Maildocker API, you can do so by setting the 'guzzle' options in config/services.php, (*6)

'maildocker' => [
    'api_key' => env('MAILDOCKER_API_KEY'),
    'api_secret' => env('MAILDOCKER_API_SECRET'),
    'guzzle' => [
        'verify' => true,
        'decode_content' => true,
    ]
],

The Versions

11/07 2016

dev-master

9999999-dev https://github.com/guissilveira

Maildocker mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Guilherme Silveira da Silva

laravel mail driver maildocker

07/07 2016

v1.1

1.1.0.0 https://github.com/guissilveira

Maildocker mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Guilherme Silveira da Silva

laravel mail driver maildocker

07/07 2016

v1.0

1.0.0.0 https://github.com/guissilveira

Maildocker mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Guilherme Silveira da Silva

laravel mail driver maildocker