有可能没有任何视图的Rails 3邮件程序?
在处理纯文字电子邮件时,能够将身体放在邮件程序本身中,而不用仅使用一行文本(或一个I18n键)就可以使用动作视图.
在某种程度上,我正在寻找类似ActionController的“render:text =>”但是对于ActionMailer.
解决方法
我通过实验找到了方式:
mail(:to => email,:subject => 'we found the answer') do |format| format.text do render :text => '42 owns the World' end end
这也在Rails指南中说:
http://guides.rubyonrails.org/action_mailer_basics.html在2.4节