我正在使用mimetext通过python发送电子邮件。
简单的例子:

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

如果我今天想在邮件中用斜体和/或粗体怎么办?

最佳答案

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

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

09-25 18:55