From 9792ab71dc1149ad5f323cddd61a5c5ef4f21e25 Mon Sep 17 00:00:00 2001 From: paulwer Date: Tue, 19 Mar 2024 13:09:03 +0100 Subject: [PATCH] minor changes --- app/Http/Controllers/MailgunController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/MailgunController.php b/app/Http/Controllers/MailgunController.php index 28a257d2e4e1..05f3d25aba40 100644 --- a/app/Http/Controllers/MailgunController.php +++ b/app/Http/Controllers/MailgunController.php @@ -117,7 +117,7 @@ class MailgunController extends BaseController if (!array_key_exists('recipient', $input) || !array_key_exists('message-url', $input)) { Log::info('Failed: Message could not be parsed, because required parameters are missing. Please ensure contacting this api-endpoint with a store & notify operation instead of a forward operation!'); - return response()->json(['message' => 'Failed. Missing Parameters'], 400); + return response()->json(['message' => 'Failed. Missing Parameters. Use store and notify!'], 400); } if (!array_key_exists('attachments', $input) || count(json_decode($input['attachments'])) == 0) {