Rails 3 /设计如何从模型方法中触发忘记的密码

TJ *_*ill 5 ruby-on-rails devise

它非常简单:如何触发rails发送忘记密码的电子邮件:

def send_invitation
     raise "Tell devise to send email"
end
Run Code Online (Sandbox Code Playgroud)

这就是我需要发送电子邮件的地方.在少数情况下触发但我需要它才能工作......

就像是

def send_invitation
   DeviseMailer.forgotten_password.deliver
end
Run Code Online (Sandbox Code Playgroud)

这不是正确的代码,我甚至不知道在哪里看

Zac*_*ker 7

这是send_reset_password_instructions,你可以通过查看您在指定添加类文档发现它recoverable在模型中,可恢复的文件.其他Devise选项也是confirmable如此.