在日常开发中,发送邮件功能是常见的需求之一。Python 的 `email` 模块为我们提供了强大的工具来构建和发送邮件。无论是简单的文本邮件还是复杂的HTML邮件,`email` 模块都能轻松搞定!👀
首先,确保你的 Python 环境已安装了支持 `smtplib` 和 `email` 的版本,推荐使用 Python 3.6+,因为这些版本对模块优化更好。📦
创建一个基本的邮件需要以下步骤:
1️⃣ 导入必要的模块:`from email.mime.text import MIMEText`
2️⃣ 设置邮件内容,如主题、正文等。
3️⃣ 使用 `smtplib.SMTP` 发送邮件。
例如,发送纯文本邮件可以这样写:
```python
import smtplib
from email.mime.text import MIMEText
msg = MIMEText('Hello, this is a test email!', 'plain', 'utf-8')
msg['Subject'] = 'Test Email'
msg['From'] = 'your_email@example.com'
msg['To'] = 'receiver_email@example.com'
server = smtplib.SMTP_SSL('smtp.example.com', 465)
server.login('your_email@example.com', 'your_password')
server.sendmail(msg['From'], [msg['To']], msg.as_string())
server.quit()
```
通过调整 MIME 类型,还可以发送 HTML 邮件或附件邮件。掌握 `email` 模块,让邮件发送变得简单高效!⚡️