如何在 ruby on Rails 3 中轻松设置设备以通过电子邮件发送忘记的密码信息?
有没有快速的方法来做到这一点?我以前从未在 Rails 中使用过邮件。 难道这一切不是在设计中设置的,让我进行一些小的修改才能使其工作吗?
提前致谢
Is there a quick way to do this? I've never used mail in rails before.
Isn't this all set up in devise leaving me a small modification to make to make it work?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的用户模型中,您需要一个 devise 调用来告诉 devise 您想要使用它的哪些方面。只要它包含
:recoverable
,devise 本身就包含了实现此操作的所有视图和逻辑(除了实际发送邮件 - 您需要自己配置邮件服务器)。In your user model, you need a
devise
call to tell devise what facets of it you want to use. As long as it includes:recoverable
, devise itself includes all the views and logic to make this work (except actually sending the mail - you need to configure your mail server yourself).