From 6304d707a7396999c75147b63a8a95c54c9bbe2b Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 18 Oct 2017 20:13:38 +0300 Subject: [PATCH] Change check data email subject --- app/Console/Commands/CheckData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/CheckData.php b/app/Console/Commands/CheckData.php index b6bb2d41c151..d3217ead2024 100644 --- a/app/Console/Commands/CheckData.php +++ b/app/Console/Commands/CheckData.php @@ -96,7 +96,7 @@ class CheckData extends Command Mail::raw($this->log, function ($message) use ($errorEmail, $database) { $message->to($errorEmail) ->from(CONTACT_EMAIL) - ->subject("Check-Data [{$database}]: " . strtoupper($this->isValid ? RESULT_SUCCESS : RESULT_FAILURE)); + ->subject("Check-Data: " . strtoupper($this->isValid ? RESULT_SUCCESS : RESULT_FAILURE) . " [{$database}]"); }); } elseif (! $this->isValid) { throw new Exception('Check data failed!!');