diff --git a/app/Service/Forms/Integrations/EmailIntegration.php b/app/Service/Forms/Integrations/EmailIntegration.php index 5a4942c6..8e362ef6 100644 --- a/app/Service/Forms/Integrations/EmailIntegration.php +++ b/app/Service/Forms/Integrations/EmailIntegration.php @@ -19,7 +19,7 @@ class EmailIntegration extends AbstractIntegrationHandler protected function shouldRun(): bool { - return !(!$this->form->is_pro || !$this->integrationData->notification_emails) && parent::shouldRun(); + return $this->integrationData->notification_emails && parent::shouldRun(); } public function handle(): void