1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

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:
Dinand Mentink 2021-08-06 10:24:13 +02:00
parent 54b47d4ac0
commit d50b754cb0
No known key found for this signature in database
GPG Key ID: ECFC9AA11684BF5A

View File

@ -19,6 +19,7 @@ return [
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN',''),
'secret' => env('MAILGUN_SECRET',''),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
],
'mandrill' => [