Встроенное изображение не загружается сразу при отправке электронной почты с использованием модулей SMTP и электронной почты - PullRequest
0 голосов
/ 18 марта 2019

Я отправляю электронное письмо из одной учетной записи Gmail в другую (если это имеет значение), где есть встроенное изображение HTML.Я заметил, что, когда я получаю эти изображения в электронном письме, они появляются со значком ссылки прерванного изображения в течение приблизительно 30 с - 1 минуты, а затем изображение генерируется.

Интересно, почему это может быть и есть ли способ это исправить?

Код, который я использовал из учебного пособия, приведен ниже (с изменениями электронной почты и паролей по очевидным причинам):

# Send an HTML email with an embedded image and a plain text message for
# email clients that don't want to display the HTML.


from email.mime import multipart
from email.mime import text
from email.mime import image


# Define these once; use them twice!
strFrom = 'XXX@gmail.com'
strTo = 'YYY@gmail.com'

# Create the root message and fill in the from, to, and subject headers
msgRoot = multipart.MIMEMultipart('related')
msgRoot['Subject'] = 'NETWORK ALERT'
msgRoot['From'] = strFrom
msgRoot['To'] = strTo
msgRoot.preamble = 'This is a multi-part message in MIME format.'

# Encapsulate the plain and HTML versions of the message body in an
# 'alternative' part, so message agents can decide which they want to display.
msgAlternative = multipart.MIMEMultipart('alternative')
msgRoot.attach(msgAlternative)

msgText = text.MIMEText('This is the alternative plain text message.')
msgAlternative.attach(msgText)

# We reference the image in the IMG SRC attribute by the ID we give it below
msgText = text.MIMEText('<b>Your Network has been Compromised</b><br><img src="cid:image1"><br>Here are actions to take....', 'html')
msgAlternative.attach(msgText)

# This example assumes the image is in the current directory
fp = open('logo.jpg', 'rb')
msgImage = image.MIMEImage(fp.read())
fp.close()

# Define the image's ID as referenced above
msgImage.add_header('Content-ID', '<image1>')
msgRoot.attach(msgImage)

# Send the email (this example assumes SMTP authentication is required)
import smtplib
smtp = smtplib.SMTP('smtp.gmail.com', 587)
smtp.starttls()
smtp.login('XXX@gmail.com', 'P@P1234')
smtp.sendmail(strFrom, strTo, msgRoot.as_string())
smtp.quit()
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...