Email PDF Attachment with PHP Using FPDF

前端 未结 4 2148
悲哀的现实
悲哀的现实 2020-12-04 10:40

I want to email a PDF as an attachment that was created using FPDF. My code looks like this, but the attachment never comes through.



        
4条回答
  •  感动是毒
    2020-12-04 11:01

    if you use PHPMailer

    $attachment= $pdf->Output('attachment.pdf', 'S');
    
    $mailer->AddStringAttachment($attachment, 'attachment.pdf');
    

    Enjoy

提交回复
热议问题