X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/c31b0bd14c2490242881237989c005b202d031af..0272f077a8d34292c7da31d86f10473a8f51aad6:/Controller/DefaultController.php diff --git a/Controller/DefaultController.php b/Controller/DefaultController.php index 4f8559f..86a280f 100644 --- a/Controller/DefaultController.php +++ b/Controller/DefaultController.php @@ -11,7 +11,7 @@ use Symfony\Component\Form\FormError; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Mailer\Exception\TransportExceptionInterface; use Symfony\Component\Mailer\MailerInterface; -use Symfony\Component\Mime\NamedAddress; +use Symfony\Component\Mime\Address; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\RouterInterface; use Symfony\Component\Translation\TranslatorInterface; @@ -78,10 +78,10 @@ class DefaultController extends AbstractController { //Create message $message = (new TemplatedEmail()) //Set sender - ->from(new NamedAddress($data['mail'], $data['name'])) + ->from(new Address($data['mail'], $data['name'])) //Set recipient //XXX: remove the debug set in vendor/symfony/mime/Address.php +46 - ->to(new NamedAddress($this->config['contact']['mail'], $this->config['contact']['name'])) + ->to(new Address($this->config['contact']['mail'], $this->config['contact']['name'])) //Set subject ->subject($data['subject']) @@ -125,7 +125,7 @@ class DefaultController extends AbstractController { /** * The index page */ - public function index(Request $request) { + public function index() { //Set section $section = $this->translator->trans('Index'); @@ -139,7 +139,7 @@ class DefaultController extends AbstractController { /** * The policy page */ - public function policy(Request $request) { + public function policy() { //Set section $section = $this->translator->trans('Policy');