2

所以 Rails 2.2 添加了邮件布局,这很好,除了我不知道如何在我发送多部分电子邮件时使它们工作..它用相同的布局包装我的邮件内容对于文本/纯文本版本和 text/html 版本。我想要的是仅将我的布局包装在 text/html 版本周围,或者能够为每个版本提供单独的布局。

有人遇到过这个吗?我在其他地方没看到有人提到,

卡梅伦

4

1 回答 1

3

为了将来参考,上面在第二篇博客文章中修改的博客文章中的解决方案在下面给出了上述博客文章的所有功劳。解决方案博文

将此代码添加到您的 environment.rb 文件中,以阻止邮件程序将布局应用于纯文本电子邮件。它还有一个检查可以阻止它与异常通知插件冲突。

# Do not use the mailer layout template for plain text emails
module ActionMailer
  class Base
    private    
    def candidate_for_layout?(options)
       (!options[:file] || !options[:file].respond_to?(:content_type) ||
          options[:file].content_type != 'text/plain') &&
          !@template.send(:_exempt_from_layout?, default_template_name)
    end
  end
end
于 2009-05-15T02:35:26.990 回答