我正在使用Kohana PDF Viewer Module(DOMPDF)从HTML页面动态创建PDF文件。
我可以使用Kohana send_file
查看或下载PDF:
// Load a view using the PDF extension
$pdf = View_PDF::factory('Print/Summary');
// Use the PDF as the request response
$response = new Response();
$response->body($pdf);
$filename = 'myfile.pdf';
$response->send_file(TRUE, $filename, array('inline' => TRUE));
我想将此PDF附加到电子邮件中并发送,但我不确定获取此PDF的最佳方法是什么,因为我通常会使用上传的文件而不是服务器生成的文件?
感谢您的帮助。
答案 0 :(得分:1)
您可以使用swiftmailer执行此操作:http://swiftmailer.org/docs/messages.html#attaching-dynamic-content
我建议使用Shadowhand的电子邮件模块,它本质上是swiftmailer的包装器:https://github.com/shadowhand/email