如何在 ruby​​ on Rails 3 中轻松设置设备以通过电子邮件发送忘记的密码信息?

发布于 2024-12-04 08:41:24 字数 89 浏览 0 评论 0原文

有没有快速的方法来做到这一点?我以前从未在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懵少女 2024-12-11 08:41:24

在您的用户模型中,您需要一个 devise 调用来告诉 devise 您想要使用它的哪些方面。只要它包含 :recoverable,devise 本身就包含了实现此操作的所有视图和逻辑(除了实际发送邮件 - 您需要自己配置邮件服务器)。

class User < ActiveRecord::Base
  devise :database_authenticatable, :registerable, :confirmable, :recoverable
end

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).

class User < ActiveRecord::Base
  devise :database_authenticatable, :registerable, :confirmable, :recoverable
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文