From 5bb0229a3a0b2c3bd1a4085737171d48198234ba Mon Sep 17 00:00:00 2001 From: Dinand Mentink Date: Fri, 21 May 2021 10:53:07 +0200 Subject: [PATCH] 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. --- config/services.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/services.php b/config/services.php index e32806d0c7e..0e19d1f2d4a 100644 --- a/config/services.php +++ b/config/services.php @@ -21,6 +21,7 @@ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN',''), 'secret' => env('MAILGUN_SECRET',''), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), ], 'mandrill' => [