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
Try
$mail->AddStringAttachment($body2, 'Filename.pdf', 'base64', 'application/pdf');
it will work
This worked fine for me:
$mail->addStringAttachment(base64_decode($attachmentBase64), $filename);
No need to chunk_split base64encode the pdf string just do
$mail->addStringAttachment($pdfString, 'vouchers.pdf');