这篇文章将为大家详细讲解有关怎么在python中使用smtplib模块自动收发邮件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
一、文件形式的邮件
直接上脚本
#coding=utf-8
importsmtplib
fromemail.mime.textimportMIMEText
fromemail.headerimportHeader
'''发送邮箱'''
sender='abc@cieXXX.com'#企业263邮箱
'''接收邮箱'''
receiver='123456@qq.com'
'''发送邮件主题'''
subject='pythonemailtest'
'''发送邮箱服务器'''
smtpserver='smtp.263xmail.com'
'''发送邮箱用户/密码'''
username='abc@cieXXX.com'
password='123456'
'''中文需参数‘utf-8',单字节字符不需要'''
msg=MIMEText('你好!','text','utf-8')
msg['Subject']=Header(subject,'utf-8')
smtp=smtplib.SMTP()
smtp.connect('smtp.263xmail.com')
smtp.login(username,password)
smtp.sendmail(sender,receiver,msg.as_string())
smtp.quit()
print("Emailhasbeensentout!")
F5,运行得到,如图所示:
邮件内容,如图所示:
这样就实现了text形式邮件的自动发送功能。
二、HTML形式的邮件
HTML形式与Text形式实现起来,脚本类似,只是文件的表现形式不一样,相比Text形式的脚本,针对HTML形式的邮件的脚本改动很少。
直接上脚本:
#coding=utf-8
importsmtplib
fromemail.mime.textimportMIMEText
fromemail.headerimportHeader
'''发送邮箱'''
sender='abc@cieXXX.com'#企业263邮箱
'''接收邮箱'''
receiver='123456@qq.com'
'''发送邮件主题'''
subject='pythonemailtest'
'''发送邮箱服务器'''
smtpserver='smtp.263xmail.com'
'''发送邮箱用户/密码'''
username='abc@cieXXX.com'
password='123456'
'''中文需参数‘utf-8',单字节字符不需要'''
msg=MIMEText('<html><hl>HelloWorld!<hl></html>','html','utf-8')
msg['Subject']=Header(subject,'utf-8')
smtp=smtplib.SMTP()
smtp.connect('smtp.263xmail.com')
smtp.login(username,password)
smtp.sendmail(sender,receiver,msg.as_string())
smtp.quit()
print("Emailhasbeensentout!")
F5,运行得到,如图所示:
打开邮箱,如图所示:
打开邮件内容,如图所示:
关于怎么在python中使用smtplib模块自动收发邮件就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。