]> Raphaël G. Git Repositories - userbundle/commitdiff
Translate contact name
authorRaphaël Gertz <git@rapsys.eu>
Tue, 26 Mar 2024 18:07:29 +0000 (19:07 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 26 Mar 2024 18:07:29 +0000 (19:07 +0100)
Controller/UserController.php

index 5d7a85b264d30ca5a03dfaaa3e8169846ac27896..fe96dfd9eb19628b6af8a2c2a49fb0f8d25dd5b4 100644 (file)
@@ -495,7 +495,7 @@ class UserController extends AbstractController {
                                        //Create message
                                        $message = (new TemplatedEmail())
                                                //Set sender
-                                               ->from(new Address($this->config['contact']['address'], $this->config['contact']['name']))
+                                               ->from(new Address($this->config['contact']['address'], $this->translator->trans($this->config['contact']['name'])))
                                                //Set recipient
                                                //XXX: remove the debug set in vendor/symfony/mime/Address.php +46
                                                ->to(new Address($context['recipient_mail'], $context['recipient_name']))
@@ -688,7 +688,7 @@ class UserController extends AbstractController {
                                //Create message
                                $message = (new TemplatedEmail())
                                        //Set sender
-                                       ->from(new Address($this->config['contact']['address'], $this->config['contact']['name']))
+                                       ->from(new Address($this->config['contact']['address'], $this->translator->trans($this->config['contact']['name'])))
                                        //Set recipient
                                        //XXX: remove the debug set in vendor/symfony/mime/Address.php +46
                                        ->to(new Address($context['recipient_mail'], $context['recipient_name']))