gpt4 book ai didi

Python MIME 文本格式

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:06 27 4
gpt4 key购买 nike

我正在使用 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')

关于Python MIME 文本格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21889046/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com