RailsCasts Pro episodes are now free!

Learn more or hide this

Torsten B's Profile

GitHub User: tbuehl

Site: itm-labs.de

Comments by Torsten B

Avatar

If you just want to resend the activation email, then you can add a method to your user model which calls the protected send_activation_needed_email! method. This sends the email again.

ruby
def resend_activation_email!
  send_activation_needed_email!
end