From e443047d0338d6b81df683e1e056b70a59f9ba87 Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Sat, 25 Nov 2023 23:04:59 +0100 Subject: [PATCH] Don't need this to demo xoauth --- examples/gmail_xoauth.phps | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/gmail_xoauth.phps b/examples/gmail_xoauth.phps index 620f4a4c..fc2a9aec 100644 --- a/examples/gmail_xoauth.phps +++ b/examples/gmail_xoauth.phps @@ -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;