Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个接受用户基本输入的表单。我想通过电子邮件将这些数据以 PDF 文档的形式发送给另一个用户。
我想知道是否有一种方法可以在不将文件存储在服务器上的情况下完成此操作。
我得到了答案:您可以使用 PHPMailer 来执行此操作。代码看起来有点像这样:
$mail = new PHPMailer(); ... $doc = $pdf->Output('', 'S'); $mail->AddStringAttachment($doc, 'doc.pdf', 'base64', 'application/pdf'); $mail->Send();