diff --git a/application/Espo/Notificators/Email.php b/application/Espo/Notificators/Email.php index ea74452e90..2243b3711c 100644 --- a/application/Espo/Notificators/Email.php +++ b/application/Espo/Notificators/Email.php @@ -58,7 +58,7 @@ class Email extends \Espo\Core\Notificators\Base public function process(Entity $entity, array $options = []) { - if ($entity->get('status') !== 'Archived' && $entity->get('status') !== 'Sent') { + if (!in_array($entity->get('status'), ['Archived', 'Sent', 'Being Imported'])) { return; }