0

我最近发现通过 Rails 发送电子邮件。看了railcast,好像可以在使用Action Mailer的时候写个模板。我真的很喜欢这个功能。我还遇到了 Pony,它看起来真的很容易使用。

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

4

2 回答 2

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)
)
于 2013-10-13T17:54:18.870 回答
1

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

于 2012-09-29T17:07:57.600 回答