Allow configuring mailgun endpoint by setting MAILGUN_ENDPOINT
Similar to https://laravel.com/docs/8.x/mail#mailgun-driver but keeping default the same as current US endpoint.
This commit is contained in:
parent
54b47d4ac0
commit
d50b754cb0
|
|
@ -19,6 +19,7 @@ return [
|
||||||
'mailgun' => [
|
'mailgun' => [
|
||||||
'domain' => env('MAILGUN_DOMAIN',''),
|
'domain' => env('MAILGUN_DOMAIN',''),
|
||||||
'secret' => env('MAILGUN_SECRET',''),
|
'secret' => env('MAILGUN_SECRET',''),
|
||||||
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'mandrill' => [
|
'mandrill' => [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue