通过DOMPDF将PDF附加到电子邮件最简单的方法是什么?
原文链接:https://www.f2er.com/php/133182.html我使用的脚本的结尾(其中的一部分)在下面:
$dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); //below to save the pdf file - not needed if emailing pdf file_put_contents('/home/ststrave/public_html/pdf/STS_Brochure.pdf',$dompdf->output()); //below to open pdf in browser - required $dompdf->stream("STS_Brochure_".rand(10,1000).".pdf",array("Attachment" => false)); jexit();
只是为了澄清 – 这是在Joomla中使用.
干杯;-)