Python读取数据邮件发出
时间: 2024-01-07 20:23:22 浏览: 144
以下是使用Python读取数据并发送邮件的示例代码:
```python
import smtplib
from email.mime.text import MIMEText
# 邮件内容
msg = MIMEText('这是一封测试邮件', 'plain', 'utf-8')
msg['Subject'] = '测试邮件'
msg['From'] = 'sender@example.com'
msg['To'] = 'recipient@example.com'
# 发送邮件
smtp_server = 'smtp.example.com'
smtp_port = 587
smtp_username = 'your_username'
smtp_password = 'your_password'
try:
with smtplib.SMTP(smtp_server, smtp_port) as server:
server.starttls()
server.login(smtp_username, smtp_password)
server.sendmail(msg['From'], msg['To'], msg.as_string())
print('邮件发送成功')
except Exception as e:
print('邮件发送失败:', str(e))
```
请注意,你需要将代码中的以下信息替换为你自己的信息:
- `msg['From']`:发件人邮箱地址
- `msg['To']`:收件人邮箱地址
- `smtp_server`:SMTP服务器地址
- `smtp_port`:SMTP服务器端口
- `smtp_username`:SMTP服务器登录用户名
- `smtp_password`:SMTP服务器登录密码
阅读全文