From 609cfda136095d67bf81ae83a9e6a5a9b5f7ff0f Mon Sep 17 00:00:00 2001 From: Mark van Eijk Date: Mon, 23 Dec 2024 17:27:36 +0100 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 112edff..36bc537 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,11 @@ Add the API key of your email service provider to the `config/services.php` file ], 'mailgun' => [ - 'api_key' => env('MAILGUN_API_KEY'), - 'webhook_signing_key' => env('MAILGUN_WEBHOOK_SIGNING_KEY'), 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'webhook_signing_key' => env('MAILGUN_WEBHOOK_SIGNING_KEY'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', ], ] ```