我寫了一個腳本,它將一條消息寫入一個文本文件,並將其作爲電子郵件發送。 一切順利,除了電子郵件終於看起來都在一行。如何在使用Python的smtplib發送的電子郵件中獲得換行符?
我通過\n
添加換行符,它適用於文本文件,但不適用於電子郵件。 你知道可能的原因是什麼嗎?
這裏是我的代碼:
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)
非常感謝。 '\ r \ n'不適用於我,但'
'。 –