我使用Devise的可识别模块,当应用发送电子邮件要求用户确认其电子邮件地址时,它不会将消息从HAML转换为HTMl。相反,这是传递给用户的内容。
%p Welcome #{@resource.email}! %p You can confirm your account
email through the link below: %p= link_to 'Confirm my account',
confirmation_url(@resource, :confirmation_token => @resource.confirmation_token)
知道我做错了吗?
答案 0 :(得分:1)
查看此文档https://github.com/plataformatec/devise/wiki/How-To%3a-Create-custom-layouts
config.to_prepare do
Devise::Mailer.layout "email" # email.haml or email.erb
end