使用Pony gem的模板

时间:2012-05-06 23:26:05

标签: ruby-on-rails email actionmailer pony

我最近遇到过通过Rails发送电子邮件。看完铁路广播后,您似乎可以在使用Action Mailer时编写模板。我真的很喜欢这个功能。我也遇到了Pony,看起来很容易使用。

我想知道我是否可以使用模板通过Pony发送电子邮件,除非Pony用于表达非模板化的电子邮件。

2 个答案:

答案 0 :(得分:5)

您可以通过显式呈现模板轻松访问视图框架:

Pony.mail(
  :to => 'somewhere@example.com',
  :from => 'sender@other.example.com',
  :subject => 'an example',
  :body => render_to_string("path/to/_partial", :locals => {foo: @foo}, :layout => false)
)

答案 1 :(得分:1)

在我的研究中,Pony似乎被提升为非基于模板的工具,使其“使用起来更简单”。该实用程序的主页根本没有提到模板: https://github.com/benprew/pony