如何通过电子邮件发送使用 PDFKit 和 Heroku in Rails 生成的 PDF?

发布于 2024-10-17 13:20:49 字数 886 浏览 3 评论 0原文

我在 Heroku 上使用 PDFKit(也在本地用于开发),并且很难通过电子邮件发送从我的 cron 任务生成的 PDF。

这是我的 cron 作业中的代码:

     kit = PDFKit.new(html_file) 
     file = kit.to_pdf 

     OutboundMailer.deliver_pdf_email(file) 
     #kit.render_file("pdf_from_cron.pdf") 

这是我的 Mailer 中的代码:

 def pdf_email(pdf)
  subject     "This is your batch of letters"
  recipients  "[email protected]"
  from        "Batch Email <[email protected]>"
  sent_on     Date.today
  body        "This is the body of pdf"

  attachment "application/pdf" do |a|
    a.filename = "batch-letters.pdf"
    a.body = pdf
  end

end

I am using PDFKit on Heroku (and also locally for dev) and am having difficulty emailing the generating PDF from my cron task.

This is the code in my cron job:

     kit = PDFKit.new(html_file) 
     file = kit.to_pdf 

     OutboundMailer.deliver_pdf_email(file) 
     #kit.render_file("pdf_from_cron.pdf") 

This is the code in my Mailer:

 def pdf_email(pdf)
  subject     "This is your batch of letters"
  recipients  "[email protected]"
  from        "Batch Email <[email protected]>"
  sent_on     Date.today
  body        "This is the body of pdf"

  attachment "application/pdf" do |a|
    a.filename = "batch-letters.pdf"
    a.body = pdf
  end

end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

驱逐舰岛风号 2024-10-24 13:20:49

我在 Heroku 上设置了一次 PDFKit 并遵循: http://blog.mattgornick.com/using- pdfkit-on-heroku。您可能需要包含二进制文件。

I setup PDFKit on Heroku once and followed: http://blog.mattgornick.com/using-pdfkit-on-heroku. You may need to include the binary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文