当用户通过API注册到我的网站时,我需要更改Symfony(FOS USerBundle)发送的电子邮件的方面。进入"寄存器功能"我有这条线:
$this->get('fos_user.mailer')->sendConfirmationEmailMessage($user);
电子邮件已发送,但哪个模板需要更改?对于测试,我在所有这些文件中插入了文件名字符串:
vendor/friendsofsymfony/user-bundle/Resources/views/Registration/confirmed.html.twig
vendor/friendsofsymfony/user-bundle/Resources/views/layout.html.twig
vendor/friendsofsymfony/user-bundle/Resources/views/Registration/check_email.html.twig
vendor/friendsofsymfony/user-bundle/Resources/views/Registration/email.txt.twig
但到达的电子邮件不包含我的更改。
我的错误在哪里?