PHPMailer attachment, doing it without a physical file

AddStringAttachment($string,$filename,$encoding,$type)

eg

$mail = new PHPMailer();
$mail->AddStringAttachment($string,$filename,$encoding,$type);

https://phpmailer.github.io/PHPMailer/classes/PHPMailer-PHPMailer-PHPMailer.html#method_addStringAttachment

Leave a Comment