我现在正在使用以下代码将表单数据写入 PDF 文件,如何使用简单的 PHP 代码作为附件通过电子邮件发送该 PDF 文件?
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 16);
$pdf->Cell(40, 10, $_POST['first_name']);
$pdf->Output();
mail('me@mydomain.com','subject','message')
?>
此代码用于下载 PDF,但我需要将文件作为附件通过电子邮件发送。