PHPMailer AddStringAttachment with PDF

前端 未结 3 1603
轻奢々
轻奢々 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条回答
  •  梦毁少年i
    2021-01-12 02:23

    This worked fine for me:

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

提交回复
热议问题