python 邮件正文字体
时间: 2023-11-08 19:06:06 浏览: 327
可以使用HTML标签来设置邮件正文的字体,例如使用`<font>`标签来设置字体颜色、大小等。示例代码如下:
```python
import smtplib
from email.mime.text import MIMEText
from email.header import Header
# 邮件正文内容
mail_content = """
<html>
<body>
<p style="font-size:16px; color:black;">这是一封Python发送的邮件。</p>
<p style="font-size:14px; color:red;">Hello World!</p>
</body>
</html>
"""
# 创建MIMEText对象,设置HTML格式的邮件正文
message = MIMEText(mail_content, 'html', 'utf-8')
message['From'] = Header('发件人姓名', 'utf-8')
message['To'] = Header('收件人姓名', 'utf-8')
message['Subject'] = Header('邮件主题', 'utf-8')
# 发送邮件
smtp_obj = smtplib.SMTP('smtp.163.com', 25)
smtp_obj.login('发件人邮箱', '邮箱授权码')
smtp_obj.sendmail('发件人邮箱', ['收件人邮箱'], message.as_string())
smtp_obj.quit()
```
阅读全文