如何使用mpdf发送pdf电子邮件?

A M*_*ain 4 php pdf-generation email-integration mpdf

我使用mpdf创建pdf的示例编码是,(它工作正常)

    <? require_once('../mpdf.php');

$mpdf = new mPDF();

$mpdf->WriteHTML('<p>Your first taste of creating PDF from HTML</p>');

$mpdf->Output();
exit;

?>
Run Code Online (Sandbox Code Playgroud)

我的示例编码发送电子邮件:

    $em =//email address ;
    $subject = //subject;
    $message = //message;

    mail($em, $subject, $message, "From: MyDomain Webmaster<admin@mydomain.com>\nX-Mailer: PHP/" . phpversion());
Run Code Online (Sandbox Code Playgroud)

我的问题是pdf已经创建并直接在浏览器中打开,如何将pdf文件作为电子邮件附件发送?

如果可能请帮我解释一下代码或者只是帮我提一些建议,我会自己编写代码.

谢谢!

A M*_*ain 5

我做了一些研究并发现了这个链接,它解释了如何使用mpdf发送电子邮件,http: //mpdf1.com/manual/index.php?tid = 373