本文介绍了如何更改“Devise:password reset instruction email's subject”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是无法更改密码重置指令电子邮件的主题。我更改了Mailer中的notifer.rb来覆盖Devise的默认电子邮件主题。但是它不工作。

I'm just unable to change "password reset instruction" email's subject. I have changed notifer.rb in Mailer to overwrite Devise default email subject. But it's not working.

在我的应用程序中,Devise .yml文件中有默认的电子邮件主题。但是我想通过从DB中提取数据来使其变为动态。

Here in my application there is default Email subject inside Devise .yml file. But I want to make it dynamic to change it by pulling data from DB.

推荐答案

可以在devise.en中进行更改。在imilizer目录中的yml文件

you can change it in devise.en.yml file in intilizer directory

为任何邮件程序设置自己的主题

And set your own subject for any mailer

                   mailer:
                     confirmation_instructions:
                       subject: 'Confirmation instructions'
                     reset_password_instructions:
                       subject: 'Reset password instructions'
                     unlock_instructions:
                       subject: 'Unlock Instructions'

这篇关于如何更改“Devise:password reset instruction email's subject”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 21:12