From d50b754cb04ccf068be4c9b6d5116c610ecc4558 Mon Sep 17 00:00:00 2001 From: Dinand Mentink Date: Fri, 6 Aug 2021 10:24:13 +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 7a9327a189..399bea2f74 100644 --- a/config/services.php +++ b/config/services.php @@ -19,6 +19,7 @@ return [ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN',''), 'secret' => env('MAILGUN_SECRET',''), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), ], 'mandrill' => [