2

在视图中使用 Liquid 模板发送电子邮件时,我的对象出现错误Liquid error: undefined method 'to_liquid' for #<Email:0x007f9ca1a62d28>Email但是,当我在浏览器中自己渲染视图时,它工作得很好!

这是我的看法:

= raw @template.render('email' => @email, 'organization' => @organization)

%p= sanitize("<a href='{{ unsubscribe_url }}''>Click here to unsubscribe</a>")

%p{style:'text-align:center;'}
  Sent with
  = link_to 'Vocalem', 'http://vocalem.com'

我的邮件的相关部分:

class BulkMailer < ActionMailer::Base
  def bulk_email(recipients, email, organization)
    ...
    @organization = organization
    @email = email
    @template = Liquid::Template.parse(organization.current_email_template.body)

相关型号代码:

liquid_methods :subject, :body, :id

最后但并非最不重要的是,Liquid 给出错误的示例(但在普通视图中工作正常!):

{{email.body}}

奇怪的是,{{organization.display_name}}不会抛出错误,而是在电子邮件中完全空白(尽管在普通视图中再次正常工作)。

任何线索可能发生在这里?

4

1 回答 1

6

尝试在组织模型中使用 to_liquid 创建液体方法并检查

def to_liquid
  {
   'display_name'=>self.name,
   'email_body'=>self.current_email_template.body 
  }
end
于 2012-08-31T08:24:34.597 回答