1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01: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-05-21 10:53:07 +02:00
parent a87b2235b2
commit 5bb0229a3a
No known key found for this signature in database
GPG Key ID: ECFC9AA11684BF5A

View File

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