projectDir = $projectDir; $this->mailer = $mailer; $this->noReplyAddress = $_SERVER['EMAIL_NOREPLY_ADDRESS']; $this->noReplyName = $_SERVER['EMAIL_NOREPLY_NAME']; $this->generalAddress = $_SERVER['EMAIL_GENERAL_ADDRESS']; $this->generalName = $_SERVER['EMAIL_GENERAL_NAME']; $this->webmasterAddress = $_SERVER['EMAIL_WEBMASTER_ADDRESS']; $this->webmasterName = $_SERVER['EMAIL_WEBMASTER_NAME']; } public function sendEmail(Email $email) { $this->mailer->send($email); } }