Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个基于 的项目LocomtiveCMS,它已经内置了重置密码功能。但是,它当前发送的重置密码电子邮件只有一个基本的框架措辞。
LocomtiveCMS
如何制作自定义消息以在发送的电子邮件中使用以重置密码?
在您的主应用程序中,您所要做的就是在此位置添加一个新文件:/app/views/locomotive/devise_mailer/reset_password_instructions.html.haml。
重新启动服务器后,Devise 应将此文件用作重置密码说明的新模板。
我们为 LocomotiveHosting.com(建立在 LocomotiveCMS 引擎之上)做到了这一点,并且效果很好。
谢谢!
做过