【发布时间】:2014-01-06 21:16:45
【问题描述】:
我有一个 ActiveMailer 类,在里面我使用 render_to_string 方法发送带有附加 PDF 模板的电子邮件,如下所示:
def send_sales_order(email_service)
@email_service = email_service
@sales_order = SalesOrder.find_by_cid(email_service.order[:id])
mail(:subject => I18n.t("custom_mailer.sales_order.subject", company_name: "test"), :to => @email_service.recipients) do |format|
format.html
format.pdf do
attachments['purchase_order.pdf'] = WickedPdf.new.pdf_from_string(
render_to_string('sales_orders/show.pdf.erb', locals: {current_company: @sales_order.company})
)
end
end
end
在 show.pdf.erb 模板中,我调用了其他地方定义的辅助方法,例如 ApplicationController 中定义的 current_company 方法,如下所示:
class ApplicationController < ActionController::Base
helper_method :current_company, :current_role
def current_company
return if current_user.nil?
if session[:current_company_id].blank?
session[:current_company_id] = current_user.companies.first.id.to_s
end
@current_company ||= Company.find(session[:current_company_id])
end
但是当我使用 render_to_string 方法渲染模板时,这些辅助方法不可用,有没有办法解决这个问题?
谢谢
【问题讨论】:
-
您找到解决方案了吗?
-
我正在寻求解决同样的问题
标签: ruby-on-rails