Its pretty simple: how do I run rails to send a forgotten password by email:
def send_invitation raise "Tell devise to send email" end
This is where I need to send an email. This works on several occasions, but I need it to work ...
Sort of
def send_invitation DeviseMailer.forgotten_password.deliver end
This is not the right code, I donβt even know where to look
source share