↧
Answer by Isaac Betesh for How to override Devise confirmation instructions
Assigning a temporary password is dangerous because the user will most likely be too lazy to change it. Also, the email could be intercepted by someone else who beats the legitimate user to changing...
View ArticleAnswer by theDazzler for How to override Devise confirmation instructions
I was able to solve this by accessing the password in the view by doing this: <%= @resource.password %>This means there isn't a need to call the mailer method manually and pass in the password.
View ArticleHow to override Devise confirmation instructions
I am using Devise and trying to create a new user(customer) programmatically and send the customer his password by email. I have created a custom mailer and have overridden the...
View Article