PHP code example of mahi-mahi / mailjet-transport

1. Go to this page and download the library: Download mahi-mahi/mailjet-transport 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/ */

    

mahi-mahi / mailjet-transport example snippets


return [
    'public_key' => env('MAILJET_APIKEY_PUBLIC'),
    'private_key' => env('MAILJET_APIKEY_PRIVATE'),
];
bash
php artisan vendor:publish --provider="MahiMahi\MailjetTransport\MailjetTransportServiceProvider" --tag="config"