/
var
/
www
/
html
/
restaurants
/
src
/
Service
/
Upload File
HOME
<?php namespace App\Service; class EmailSender { /** * @var Mailgun */ private $mailgun; private $templating; public function __construct(MailgunTransport $mailgun, \Twig\Environment $templating) { $this->mailgun = $mailgun; $this->templating = $templating; } public function sendPlainEmail($view, $email, $subject, $text) { $message = $this->templating->render( $view, [ 'text' => $text ] ); $response = $this->mailgun->send($email, $subject, $message); return $response; } }