0

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

知道我做错了什么吗?

4

1 回答 1

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
于 2012-07-05T22:44:37.033 回答