PHP code example of guissilveira / maildocker-laravel-driver

1. Go to this page and download the library: Download guissilveira/maildocker-laravel-driver library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

guissilveira / maildocker-laravel-driver example snippets


Guissilveira\MailDrivers\Maildocker\MaildockerServiceProvider::class,

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

'driver' => env('MAIL_DRIVER', 'maildocker'),

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