gpt4 book ai didi

php - 在wordpress中附加带有wp_mail功能的pdf

转载 作者:搜寻专家 更新时间:2023-10-31 21:02:33 24 4
gpt4 key购买 nike

我正在尝试附加一个使用 tcpdf 库创建的 pdf 文件,以便处理预订表格数据。可以发送邮件,但是无法附加动态创建的pdf文件。非常感谢这方面的任何帮助。

最佳答案

$pdfname ='pdfname';
$PdfName = $_SERVER['DOCUMENT_ROOT'].'/wp-content/themes/themename/folder/'.$pdfname.'.pdf';
echo $pdf->Output($PdfName, 'F');
echo $pdf->Output($pdfname.'.pdf', 'D');


/***** After creating pdf you will use below code****/
$email = $ToMailAdrs;
$to = "<$email>";

$subject = "PDF Attachment";

$separator = md5(time());
$eol = PHP_EOL;
// main header (multipart mandatory)
$headers = 'From: Name <no-reply@test.in>' . "\r\n";
$headers .= "MIME-Version: 1.0".$eol;
$headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"".$eol; // see below
$headers .= "Content-Transfer-Encoding: 7bit".$eol;
// message
$msg .= "<p style='white-space: pre-wrap;'>".$email_message."</p>".$eol.$eol;
$attachment = array($PdfFileUrl);
// send message
wp_mail($to, $subject, $msg, $headers,$attachment);
header("Location:?showpage=invoice");
exit;

关于php - 在wordpress中附加带有wp_mail功能的pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39168749/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com