发送电子邮件时需要为主题添加颜色
这是代码,我希望主题是彩色的
content = " <html>\
<body ><p>Hi, </p><p style='font-family:verdana;color:MediumSeaGreen;'>QA </p></body></html>"
msg = MIMEText(content, 'html')
msg['Subject'] = "subject"
to_ = [list@emil.com]
from_ = '{}@test.com'.format(getpass.getuser())
smtp_ = smtplib.SMTP("mail.test.com")
smtp_.set_debuglevel(3)
smtp_.sendmail(from_, to_, msg.as_string())