From dfe5afa71bb4edc0be2b03d71f2e3e5e4652c94a Mon Sep 17 00:00:00 2001 From: Claudio Dekker Date: Thu, 6 Sep 2018 14:02:17 +0200 Subject: [PATCH] Add missing Mailgun 'endpoint' option Counterpart to https://github.com/laravel/framework/pull/25010 --- config/services.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/services.php b/config/services.php index aa1f7f82..55a520e2 100644 --- a/config/services.php +++ b/config/services.php @@ -17,6 +17,7 @@ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN'), 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), ], 'ses' => [