How to change confirmation email template in FOSUserBundle?

I need to change the confirmation email template in FOSUserBundle. I have these settings, but this does not work:

fos_user: db_driver: orm firewall_name: main user_class: Acme\UserBundle\Entity\User registration: confirmation: enabled: true email: template: AcmeUserBundle:User:confirm.email.twig 

Error:

 Unrecognized options "email" under "fos_user.registration" 
+6
source share
1 answer

Do you mean a confirmation email template?

  confirmation: enabled: true template: MgpAppBundle:Registration:email.txt.twig 
+9
source

Source: https://habr.com/ru/post/908714/


All Articles