PHPMailer AddStringAttachment with PDF

前端 未结 3 1599
轻奢々
轻奢々 2021-01-12 01:55

I am new to phpmailer and I am able to send emails, emails with attachments, and stringattachments that are .txt files however I cannot send stringattachments with PDF\'s. T

3条回答
  •  既然无缘
    2021-01-12 02:33

    No need to chunk_split base64encode the pdf string just do

    $mail->addStringAttachment($pdfString, 'vouchers.pdf');
    

提交回复
热议问题