Rails 3 Render Prawn pdf in ActionMailer

前端 未结 3 1333
青春惊慌失措
青春惊慌失措 2021-01-05 07:10

How to render prawn pdf as attachment in ActionMailer? I use delayed_job and don\'t understand, how could I render pdf-file in action mailer (not in controller). What format

3条回答
  •  萌比男神i
    2021-01-05 07:39

    My solution:

    render_to_string('invoices/show.pdf', :type => :prawn)
    

    PDF was corrupted because I didn't write block for mail function and multi-part email was incorrect.

提交回复
热议问题