如何使用 mpdf 发送 pdf 电子邮件?
Posted
技术标签:
【中文标题】如何使用 mpdf 发送 pdf 电子邮件?【英文标题】:how to send pdf email using mpdf? 【发布时间】:2012-09-19 12:42:08 【问题描述】:我使用 mpdf 创建 pdf 的示例编码是,(它工作正常)
<? require_once('../mpdf.php');
$mpdf = new mPDF();
$mpdf->Writehtml('<p>Your first taste of creating PDF from HTML</p>');
$mpdf->Output();
exit;
?>
我发送电子邮件的示例代码:
$em =//email address ;
$subject = //subject;
$message = //message;
mail($em, $subject, $message, "From: MyDomain Webmaster<admin@mydomain.com>\nX-Mailer: PHP/" . phpversion());
我的问题是pdf是直接在浏览器中创建并打开的,如何将pdf文件作为电子邮件附件发送?
如果可能的话,请帮助我编写代码或者只是帮助我提出一些建议,我将自己编写代码。
谢谢!
【问题讨论】:
【参考方案1】:来自 Wayback Machine(上面的链接):https://web.archive.org/web/20151004121531/http://mpdf1.com/manual/index.php?tid=373
<?php
include("../mpdf.php"); //Include mPDF Class
$mpdf=new mPDF(); // Create new mPDF Document
//Beginning Buffer to save PHP variables and HTML tags
ob_start();
// Function Date
$day = date('d');
$month = date('m');
$year = date('Y');
switch ($month)
case 1: $month = "January"; break;
case 2: $month = "February"; break;
case 3: $month = "March"; break;
case 4: $month = "April"; break;
case 5: $month = "May"; break;
case 6: $month = "June"; break;
case 7: $month = "July"; break;
case 8: $month = "August"; break;
case 9: $month = "September"; break;
case 10: $month = "October"; break;
case 11: $month = "November"; break;
case 12: $month = "December"; break;
echo "Hello World
Today is $month $day, $year";
$html = ob_get_contents();
ob_end_clean();
//Here convert the encode for UTF-8, if you prefer the ISO-8859-1 just change for $mpdf->WriteHTML($html);
$mpdf->WriteHTML(utf8_encode($html));
$content = $mpdf->Output('', 'S');
$content = chunk_split(base64_encode($content));
$mailto = 'mailto@mailto.com'; //Mailto here
$from_name = 'ACME Corps Ltd'; //Name of sender mail
$from_mail = 'mailfrom@mailfrom.com'; //Mailfrom here
$subject = 'subjecthere';
$message = 'mailmessage';
$filename = "yourfilename-".date("d-m-Y_H-i",time()); //Your Filename with local date and time
//Headers of PDF and e-mail
$boundary = "XYZ-" . date("dmYis") . "-ZYX";
$header = "--$boundary\r\n";
$header .= "Content-Transfer-Encoding: 8bits\r\n";
$header .= "Content-Type: text/html; charset=ISO-8859-1\r\n\r\n"; // or utf-8
$header .= "$message\r\n";
$header .= "--$boundary\r\n";
$header .= "Content-Type: application/pdf; name=\"".$filename."\"\r\n";
$header .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n";
$header .= "Content-Transfer-Encoding: base64\r\n\r\n";
$header .= "$content\r\n";
$header .= "--$boundary--\r\n";
$header2 = "MIME-Version: 1.0\r\n";
$header2 .= "From: ".$from_name." \r\n";
$header2 .= "Return-Path: $from_mail\r\n";
$header2 .= "Content-type: multipart/mixed; boundary=\"$boundary\"\r\n";
$header2 .= "$boundary\r\n";
mail($mailto,$subject,$header,$header2, "-r".$from_mail);
$mpdf->Output($filename ,'I');
exit;
?>
【讨论】:
以上是关于如何使用 mpdf 发送 pdf 电子邮件?的主要内容,如果未能解决你的问题,请参考以下文章
mpdf:如何使用包含大页面的 mpdf 生成 pdf 文件