<?php
return [
/*
* API endpoint settings.
*
*/
'api' => [
'endpoint' => 'api.mailgun.net',
'version' => 'v3',
'ssl' => true
],
/*
* Domain name registered with Mailgun
*
*/
'domain' => env('MAILGUN_DOMAIN', ''),
/*
* Mailgun (private) API key
*
*/
'api_key' => env('MAILGUN_PRIVATE', ''),
/*
* Mailgun public API key
*
*/
'public_api_key' => env('MAILGUN_PUBLIC', ''),
/*
* You may wish for all e-mails sent with Mailgun to be sent from
* the same address. Here, you may specify a name and address that is
* used globally for all e-mails that are sent by this application through Mailgun.
*
*/
'from' => [
'address' => env('MAILGUN_FROM_ADDRESS', ''),
'name' => env('MAILGUN_FROM_NAME', ''),
],
/*
* Global reply-to e-mail address
*
*/
'reply_to' => env('MAILGUN_REPLY_TO', ''),
/*
* Force the from address
*
* When your `from` e-mail address is not from the domain specified some
* e-mail clients (Outlook) tend to display the from address incorrectly
* By enabling this setting, Mailgun will force the `from` address so the
* from address will be displayed correctly in all e-mail clients.
*
* WARNING:
* This parameter is not documented in the Mailgun documentation
* because if enabled, Mailgun is not able to handle soft bounces
*
*/
'force_from_address' => env('MAILGUN_FORCE_FROM_ADRESS', false),
/*
* Testing
*
* Catch All address
*
* Specify an email address that receives all emails send with Mailgun
* This email address will overwrite all email addresses within messages
*/
'catch_all' => env('MAILGUN_CATCH_ALL', ''),
/*
* Testing
*
* Mailgun's testmode
*
* Send messages in test mode by setting this setting to true.
* When you do this, Mailgun will accept the message but will
* not send it. This is useful for testing purposes.
*
* Note: Mailgun DOES charge your account for messages sent in test mode.
*/
'testmode' => env('MAILGUN_TESTMODE', false)
];
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]