如何在 Python 中使用 smtplib 模块设置邮件主题?
import smtplib
# 邮箱地址和密码
email_address = "your_email@example.com"
password = "your_password"
# 接收邮件地址
receiver_address = "recipient_email@example.com"
# 创建 smtplib 对象
smtp_client = smtplib.SMTP("smtp.example.com", 587)
# 设置邮件主题
smtp_client.starttls()
smtp_client.set_tls_security("STARTTLS")
smtp_client.login(email_address, password)
# 发送邮件
smtp_client.sendmail("sender_email@example.com", receiver_address, "Hello, world!")
# 关闭连接
smtp_client.quit()
注意:
- 确保您已安装了
smtplib
模块。您可以使用pip install smtplib
命令安装。 - 请替换
your_email@example.com
和your_password
为您的实际邮箱地址和密码。 - 请替换
smtp.example.com
为您的邮件服务器地址。