利用 Python 发送邮件

本文最后更新于:2020-08-23 00:01

利用 Python 的内置 SMTP 模块发送邮件,可以配合其他功能(如天气预报等)一起使用

这里,只讲解一下发送邮件的方法,代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python3
# -*- coding:utf-8*-

from email.mime.text import MIMEText
from email.header import Header
from smtplib import SMTPException
from smtplib import SMTP_SSL

host_server = 'smtp.qq.com'
sender = '120*****43' # 填写你的QQ号
password = 'asd**********spf' # QQ邮箱SMPT授权码,注意,不是QQ邮箱的登录密码


def SendEmail(receiver, mail_title, mail_content):
try:
smtp = SMTP_SSL(host_server)
smtp.set_debuglevel(0) # 参数值为1表示开启调试模式,参数值为0关闭调试模式
smtp.ehlo(host_server)
smtp.login(sender, password)

msg = MIMEText(mail_content, "plain", 'utf-8')
msg["Subject"] = Header(mail_title, 'utf-8')
msg["From"] = sender + '@qq.com'
msg["To"] = receiver
smtp.sendmail(sender + '@qq.com', receiver, msg.as_string())
smtp.quit()
print('邮件 %s 发送成功' % mail_title)
except SMTPException as e:
print('Error: ', e)

要发送邮件只要调用

1
SendEmail('67*****22@qq.com', '标题', '内容') # 三个参数分别是收信人的邮箱(可以不是QQ邮箱),邮件标题和邮件内容

利用 Python 发送邮件
https://peppernotes.top/2020/08/pythonemail/
作者
辣椒小皇纸
发布于
2020年8月23日
许可协议