设计未从haml转换为html的确认电子邮件

时间:2012-07-05 21:15:51

标签: ruby-on-rails devise devise-confirmable

我使用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)

知道我做错了吗?

1 个答案:

答案 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