Python如何实现邮件的发送
发布时间:2025-10-23 16:04:23

python笔记- 发送邮件
依赖:
Python代码发送邮件,使用smtplib模块、MIMEText,在实现代码之前,需要导入包:
importsmtplib fromemail.mime.textimportMIMEText
使用163邮件发送邮件,具体代码如下:
importsmtplib
fromemail.mime.textimportMIMEText
'''
默认使用163smtp发送邮件函数
:parammail_host:邮箱服务器,16邮箱hostt:smtp.163.com
:paramport:163邮箱默认端口为25
:paramusername:xx@1633邮箱账号.com
:parampasswd:邮箱密码(不是邮箱的登录密码,而是邮箱的授权码)
:paramrecv:邮箱接收人地址,多个账号用逗号隔开
:paramtitle:邮件标题
:paramcontent:邮件内容
:return:
'''
defsend_mail(username,passwd,recv,title,content,mail_host='smtp.163.com',port=25):
msg=MIMEText(content)#邮件内容
msg['Subject']=title#邮件主题
msg['From']=username#发送者账号
msg['To']=recv#接收人账号列表
smtp=smtplib.SMTP(mail_host,port=port)#连接邮箱,输入邮箱地址和端口号,smtp端口号为25
smtp.login(username,passwd)#登录发送者的邮箱帐号,密码
#参数分别是发送者和接收者。第三个是将上述邮件的内容转换为字符串
smtp.sendmail(username,recv,msg.as_string())
smtp.quit()#发送后退出smtpp
print('emailsendsuccess.')
if__name__='__main__':
email_user='xxxx@163.com'#发送者账号
email_pwd='xxxxx'#发送者密码,授权码
maillist='xxxx@qq.com'
title='测试邮件标题'
content='这是邮件内容'
send_mail(email_user,email_pwd,maillist,title,content)获取163邮箱授权码的方法如下:
1. 点击设置-POP3/登录163邮箱SMTP/IMAP,如下:
2. 打开SMTP服务并查询SMTPhost地址:
3. 点击客户端授权密码,重置授权密码:
使用QQ邮件发送邮件,具体代码如下:
importsmtplib
fromemail.mime.textimportMIMEText
'''
默认使用163smtp发送邮件函数
:parammail_host:邮箱服务器,qq邮箱hostt:smtp.qq.com
:paramport:QQ邮箱的默认端口号为:456
:paramusername:xx@1633邮箱账号.com
:parampasswd:邮箱密码(不是邮箱登录密码,而是邮箱授权码)
:paramrecv:邮箱接收人地址,多个账号用逗号隔开
:paramtitle:邮件标题
:paramcontent:邮件内容
:return:
'''
#邮件发送到qq邮箱
defsend_mail(username,passwd,recv,title,content,mail_host='smtp.qq.com',port=456):
msg=MIMEText(content)#邮件内容
msg['Subject']=title#邮件主题
msg['From']=username#发送者账号
msg['To']=recv#接收人账号列表
smtp=smtplib.SMTP_SSL(mail_host,port=port)#连接邮箱,输入邮箱地址和端口号,smtp端口号为25
smtp.login(username,passwd)#登录发送人的邮箱账号,密码
#参数分别是发送者和接收者。第三个是将上述邮件的内容转换为字符串
smtp.sendmail(username,recv,msg.as_string())
smtp.quit()#发送后退出smtpp
print('emailsendsuccess.')
if__name__='__main__':
email_user='xxx@qq.com'#发送者账号
email_pwd='WOSHINIGE123#;#发送者密码,授权码
maillist='xxxx@qq.com'
title='测试邮件标题'
content='这是邮件内容'
send_mail(email_user,email_pwd,maillist,title,content)相关推荐:Python视频教程
多个收件人及附件:
#importsmtplib
#fromemail.mime.textimportMIMEText
#'''
#默认使用163smtp发送邮件函数
#:parammail_host:邮箱服务器,qq邮箱hostt:smtp.163.com
#:paramport:QQ邮箱的默认端口号为:25
#:paramusername:xx@1633邮箱账号.com
#:parampasswd:邮箱密码(不是邮箱登录密码,是邮箱的授权码)
#:paramrecv:邮箱接收人地址,多个账号用逗号隔开
#:paramtitle:邮件标题
#:paramcontent:邮件内容
#:return:
#'''
importsmtplib
fromemail.mime.textimportMIMEText
fromemail.mime.multipartimportMIMEMultipart
#邮箱服务器地址
email_host='smtp.163.com'
#发送者
email_user='xxxx@163.com'
#授权码
email_pwd='WOSHINIGE123;
#多个收件人,使用分号分隔
maillist='xxxx@qq.com;aaaa@qq.com'
#分割多个收件人,以此为标准,返回结果为list['xxxx@qq.com','aaaa@qq.com']
email_info=maillist.split(';')
#构建发送附件的邮件内容对象
new_msg=MIMEMultipart()
#邮件文本内容
new_msg.attach(MIMEText('testemail...'))
#邮件主题
new_msg['Subject']='testemail'
#邮件发送者
new_msg['From']=email_user
#邮件接收者,使用多个收件人的帐户,连接,输入类型为str
new_msg['To']=','.join(email_info)
#打开a.txt阅读文本内容
att=MIMEText(open('a.txt').read())
att["Content-Type"]='application/octet-stream'
#发送附件必须以固定格式书写,filename指定附件的名称
att["Content-Disposition"]='attachment;filename="haha.txt"'
new_msg.attach(att)
#连接邮箱,输入邮箱地址和端口号,smtp端口号为25
smtp=smtplib.SMTP(email_host,port=25)
#首先登录发送者的邮箱账号和密码
smtp.login(email_user,email_pwd)
smtp.sendmail(email_user,email_info,new_msg.as_string())
smtp.quit()
print('emailsendsuccess.')在多个收件人时,帐户之间使用分号;分割,进行smtp.sendmail(多种类型的收件人被引入列表);new_msg['TO'] = recv,接收类型为str。
实现邮件发送的使用类别,可以发送多人或附件:
importsmtplib
fromemail.mime.textimportMIMEText
fromemail.mime.multipartimportMIMEMultipart
classSendMail(object):
def__init__(self,username,passwd,recv,title,content,file=None,email_host='smtp.163.com',port=25):
self.username=username
self.passwd=passwd
self.recv=recv
self.title=title
self.content=content
self.file=file
self.email_host=email_host
self.port=port
defsend_mail(self):
msg=MIMEMultipart()
#发送内容的对象
ifself.file:#处理附件的
att=MIMEText(open(self.file,encoding='utf-8').read())
att["Content-Type"]='application/octet-stream'
att["Content-Disposition"]='attachment;filename="%s"'%self.file
msg.attach(att)
msg.attach(MIMEText(self.content))#邮件文本的内容
msg['Subject']=self.title#邮件主题
msg['From']=self.username#发送者账号
#多个账号'aaa.@qq.com;bbbb@163.com'以分号分割,分为list
self.recv=self.recv.split(';')
ifisinstance(self.recv,list):
msg['To']=','.join(self.recv)
else:
msg['To']=self.recv#接收人账号列表
ifself.username.endswith('qq.com'):#如果发送者是qq邮箱
self.smtp=smtplib.SMTP_SSL(self.email_host,port=self.port)
else:
self.smtp=smtplib.SMTP(self.email_host,port=self.port)
#发送邮件服务器的对象
self.smtp.login(self.username,self.passwd)
try:
self.smtp.sendmail(self.username,self.recv,msg.as_string())
exceptExceptionase:
print('出错了。。。',e)
else:
print('发送成功!')
self.smtp.quit()
if__name__='__main__':
m=SendMail(
username='zzzzz@163.com',passwd='xxxxxxx',file='a.txt',recv='xxxxxx@qq.com;xxxxxx@qq.com',
title='多个收件人',content='哈哈哈哈哈哈哈,#39哈哈哈;,email_host='smtp.163.com',port=25
)
m.send_ma 