Python 2: SMTPServerDisconnected: Connexion de manière inattendue fermé

J'ai un petit problème avec l'envoi d'un e-mail en Python:

#me == my email address
#you == recipient's email address
me = "[email protected]"
you = "[email protected]"

# Create message container - the correct MIME type is multipart/alternative.
msg = MIMEMultipart('alternative')
msg['Subject'] = "Alert"
msg['From'] = me
msg['To'] = you

# Create the body of the message (a plain-text and an HTML version).
html = '<html><body><p>Hi, I have the following alerts for you!</p></body></html>'

# Record the MIME types of both parts - text/plain and text/html.
part2 = MIMEText(html, 'html')

# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message, in this case
# the HTML message, is best and preferred.
msg.attach(part2)

# Send the message via local SMTP server.
s = smtplib.SMTP('aspmx.l.google.com')
# sendmail function takes 3 arguments: sender's address, recipient's address
# and message to send - here it is sent as one string.
s.sendmail(me, you, msg.as_string())
s.quit()

Donc, avant de maintenant, mon programme ne me donne pas une erreur, mais il ne voulait pas m'envoyer un email. Et maintenant, python me donne une erreur:

SMTPServerDisconnected: Connection unexpectedly closed

Comment puis-je résoudre ce problème?

InformationsquelleAutor Michael | 2013-07-20