diff --git a/app/Jobs/Mail/NinjaMailerJob.php b/app/Jobs/Mail/NinjaMailerJob.php index 2a1e4d2b63c8..eaab72bf4288 100644 --- a/app/Jobs/Mail/NinjaMailerJob.php +++ b/app/Jobs/Mail/NinjaMailerJob.php @@ -486,8 +486,13 @@ class NinjaMailerJob implements ShouldQueue */ private function preFlightChecksFail(): bool { + /* Always send regardless */ + if($this->override) { + return false; + } + /* If we are migrating data we don't want to fire any emails */ - if ($this->company->is_disabled && !$this->override) { + if ($this->company->is_disabled) { return true; }