//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']))
//Log new user infos
$this->logger->emergency(
$this->translator->trans(
- 'register: mail=%mail% locale=%locale% confirm=%confirm%',
+ 'register: mail=%mail% locale=%locale% confirm=%confirm% ip=%ip%',
[
'%mail%' => $postMail = $_POST['register']['mail'],
'%locale%' => $request->getLocale(),
'hash' => $this->slugger->hash($postSmail)
]+$this->config['route']['confirm']['context'],
UrlGeneratorInterface::ABSOLUTE_URL
- )
+ ),
+ '%ip%' => $request->getClientIp()
]
)
);
//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']))