如何做Devise重置密码邮件定制?

时间:2012-10-10 05:21:03

标签: ruby-on-rails-3 devise

我使用devise进行身份验证,重置密码,发送邮件如bellow

你好,

if you would like to reset or if you have forgotten your password please click on the      following link: click_here

Thank you and happy bantering!
the swagata@gmail.com Regards

我希望最后一行看起来像

regards 
the swagata@gmail.com

请给我一些建议

1 个答案:

答案 0 :(得分:2)

您可以自定义设计视图。在项目目录中运行以下命令:

rails g devise:views

这将在您的app/views/devise目录中复制设计视图(包括邮件程序模板)。然后您可以根据需要进行自定义。