From 7d2a86580db5f22cefbd5221f1f2673fa08226e3 Mon Sep 17 00:00:00 2001 From: Jan Klepek Date: Tue, 17 Sep 2019 15:54:53 +0200 Subject: [PATCH] add default value for mailgun endpoint --- config/services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/services.php b/config/services.php index 7628775942..6a1659be70 100644 --- a/config/services.php +++ b/config/services.php @@ -38,7 +38,7 @@ return [ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN'), - 'endpoint' => env('MAILGUN_ENDPOINT'), + 'endpoint' => env('MAILGUN_ENDPOINT','api.mailgun.net'), 'secret' => env('MAILGUN_SECRET'), ],