Python MIMEText格式化

时间:2014-02-19 18:19:23

标签: python email formatting

我正在使用MIMEText通过python发送电子邮件。

一个简短的例子:

        message = MIMEText('Hi,\n\nYour taxes are due.\n\nTODAY.\n\nBest,\n\nIRS.')

如果我希望TODAY在电子邮件中用斜体和/或粗体显示怎么办?

1 个答案:

答案 0 :(得分:5)

MIMEText支持html格式。你可以这样做:

message="""\
    <html>
        <head></head>
        <body>
            <b>"""This is bold"""</b>
            <i>"""This is italic"""</i>
        </body>
    </html>
    """
MIMEText(message,'html')