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!!');