PHPMailer AddStringAttachment with PDF

前端 未结 3 1600
轻奢々
轻奢々 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:17

    Try

    $mail->AddStringAttachment($body2, 'Filename.pdf', 'base64', 'application/pdf');
    

    it will work

    0 讨论(0)
  • 2021-01-12 02:23

    This worked fine for me:

    $mail->addStringAttachment(base64_decode($attachmentBase64), $filename);

    0 讨论(0)
  • 2021-01-12 02:33

    No need to chunk_split base64encode the pdf string just do

    $mail->addStringAttachment($pdfString, 'vouchers.pdf');
    
    0 讨论(0)
提交回复
热议问题