diff --git a/engine/Notifications/Email.php b/engine/Notifications/Email.php index 24617230..0612f46c 100755 --- a/engine/Notifications/Email.php +++ b/engine/Notifications/Email.php @@ -322,6 +322,8 @@ class Email { $mailer->Password = $this->config['smtp_pass']; $mailer->SMTPSecure = $this->config['smtp_crypto']; $mailer->Port = $this->config['smtp_port']; + $mailer->Sender = $settings['company_email']; + $mailer->SetFrom($settings['company_email'], $settings['company_name'], FALSE); } $mailer->IsHTML($this->config['mailtype'] === 'html');