我正在使用 dompdf 生成 pdf,我需要将其附加到 phpmailer 并邮寄。帮助将不胜感激。
<?php
require_once("../../dompdf/dompdf_config.inc.php");
$templateFile = 'prog_report.php';
$content = file_get_contents($templateFile);
$dompdf = new DOMPDF();
$dompdf->load_html($content);
$dompdf->render();
$dompdf->stream("sample.pdf");
?>
这是phpmailer附件模块..
$mail->AddAttachment("images/phpmailer.gif");
我想在此处附上生成的 pdf,并且不应将 pdf 保存在硬盘驱动器上。