Email notifications in the free plan

This commit is contained in:
Julien Nahum 2024-03-28 19:03:09 +01:00
parent 762aaf3b0a
commit 3420216205
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class EmailIntegration extends AbstractIntegrationHandler
protected function shouldRun(): bool 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 public function handle(): void