使用python电子邮件模块通过电子邮件向主题添加颜色

时间:2018-05-30 14:22:28

标签: python html email smtp mime

发送电子邮件时需要为主题添加颜色

这是代码,我希望主题是彩色的

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())

0 个答案:

没有答案