0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-19 17:42:14 +02:00

Don't need this to demo xoauth

This commit is contained in:
Marcus Bointon 2023-11-25 23:04:59 +01:00
parent d5615bffb4
commit e443047d03
No known key found for this signature in database
GPG Key ID: DE31CD6EB646AA24

View File

@ -113,9 +113,6 @@ $mail->msgHTML(file_get_contents('contentsutf8.html'), __DIR__);
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
echo 'Mailer Error: ' . $mail->ErrorInfo;