Ho scritto uno script che scrive un messaggio in un file di testo e lo invia anche come messaggio di posta elettronica. Tutto va bene, tranne che l'e-mail sembra essere tutto in una riga.Come ottenere interruzioni di riga nelle e-mail inviate usando smtplib di Python?
Aggiungo interruzioni di riga da \n
e funziona per il file di testo ma non per l'e-mail. Sai quale potrebbe essere la possibile ragione?
Ecco il mio codice:
import smtplib, sys
import traceback
def send_error(sender, recipient, headers, body):
SMTP_SERVER = 'smtp.gmail.com'
SMTP_PORT = 587
session = smtplib.SMTP('smtp.gmail.com', 587)
session.ehlo()
session.starttls()
session.ehlo
session.login(sender, 'my password')
send_it = session.sendmail(sender, recipient, headers + "\r\n\r\n" + body)
session.quit()
return send_it
SMTP_SERVER = 'smtp.gmail.com'
SMTP_PORT = 587
sender = '[email protected]'
recipient = '[email protected]'
subject = 'report'
body = "Dear Student, \n Please send your report\n Thank you for your attention"
open('student.txt', 'w').write(body)
headers = ["From: " + sender,
"Subject: " + subject,
"To: " + recipient,
"MIME-Version: 1.0",
"Content-Type: text/html"]
headers = "\r\n".join(headers)
send_error(sender, recipient, headers, body)
Grazie mille. '\ r \ n' non funziona per me ma lo' '
'. –