在我的 Rails 应用程序中,我试图将发票附加到电子邮件中:
def invoice(invoice)
attachment :content_disposition => "attachment",
:body => InvoicePdf.new(invoice),
:content_type => "application/pdf",
:filename => 'invoice.pdf'
mail(:to => @user.email, :subject => "Your Invoice")
end
InvoicePdf是一个 Prawn PDF 文档:
class InvoicePdf < Prawn::Document
def initialize(order, view)
draw_pdf
end
def draw_pdf
# pdf stuff
end
end
我在电子邮件中没有收到任何附件。我究竟做错了什么?任何提示都将受到欢迎和赞赏。
编辑:我使用的 Rails 版本是3.0.x