In FOSUserBundle we can create new user via console with command:
$ php app/console fos:user:create testuser test@example.com p@ssword
Is it possible to send email (via console) created user to activate account? Something like that:
$ php app/console fos:user:create testuser test@example.com p@ssword --send-mail
If I manually create accounts is it possible to send email to all users, asking them to activate account?