I use
user.skip_confirmation!
To skip developer email confirmation when a new user adds an existing user. The problem with skip_confirmation is that it does not generate a confirmation token.
I want to send a confirmation email manually, which means I need a confirmation token.
How can I skip the development confirmation email, but still create a confirmaton_token file so that I can manually send a confirmation email to add users?
thank
source
share