如何通过电子邮件发送使用 PDFKit 和 Heroku in Rails 生成的 PDF?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 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.