Send FPDF document with PHPMailer;

前端 未结 2 1555
野的像风
野的像风 2021-02-10 11:27

I am currently trying to generate a pdf with FPDF and then send it in an email with PHPMailer. I know that the PHPMailer functionality is working, and I can create the pdf. But

2条回答
  •  佛祖请我去吃肉
    2021-02-10 11:44

    If you need to save file and send, use this.

       $file = basename("test");    //create file
        $file .= '.pdf';    //change extension of file to .pdf
        $pdf->Output($file, 'F');   //save file
      ..... 
        $mail->AddAttachment("test.pdf");   //add attachment
    

    take care of file location.

提交回复
热议问题