python 邮件通知
时间: 2023-06-22 07:48:22 浏览: 85
好的,我可以帮你解决这个问题。你可以使用 Python 的 smtplib 模块来发送邮件通知。以下是一个简单的示例代码:
```python
import smtplib
from email.mime.text import MIMEText
# 发送邮件的邮箱和密码
sender = 'your_email@example.com'
password = 'your_email_password'
# 接收邮件的邮箱
receiver = 'receiver_email@example.com'
# 邮件的主题和内容
subject = '邮件主题'
content = '邮件内容'
# 创建邮件实例
message = MIMEText(content, 'plain', 'utf-8')
message['Subject'] = subject
message['From'] = sender
message['To'] = receiver
# 发送邮件
smtp_server = 'smtp.example.com'
smtp_port = 25
server = smtplib.SMTP(smtp_server, smtp_port)
server.login(sender, password)
server.sendmail(sender, [receiver], message.as_string())
server.quit()
```
请将示例代码中的 `your_email@example.com`、`your_email_password`、`receiver_email@example.com`、`邮件主题`、`邮件内容`、`smtp.example.com`、`25` 替换为你的实际信息。你也可以使用其他的邮件服务商,例如 Gmail、163、QQ 等,只需要将 `smtp_server` 和 `smtp_port` 分别替换为对应的 SMTP 服务器地址和端口号即可。
阅读全文