From 271d5114a16bc4d55f6e8518614da76ef507df2e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 20 Dec 2024 22:03:46 -0700 Subject: [PATCH] Update mailgun config, add endpoint and scheme --- config/services.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/services.php b/config/services.php index 3f73b64aa..a1e56ac99 100644 --- a/config/services.php +++ b/config/services.php @@ -17,6 +17,8 @@ return [ 'mailgun' => [ 'domain' => env('MAILGUN_DOMAIN'), 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', ], 'ses' => [