python 发送邮件实例
文件形式的邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimetext import MIMEText from emailheader import Header sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msg = MIMEText('你好','text','utf-8')#中文需参数‘utf-8',单字节字符不需要 msg['Subject'] = Header(subject, 'utf-8') smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgas_string()) smtpquit()
HTML形式的邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimetext import MIMEText sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msg = MIMEText('<html><h1>你好</h1></html>','html','utf-8') msg['Subject'] = subject smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgas_string()) smtpquit()
带图片的HTML邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimemultipart import MIMEMultipart from emailmimetext import MIMEText from emailmimeimage import MIMEImage sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msgRoot = MIMEMultipart('related') msgRoot['Subject'] = 'test message' msgText = MIMEText('<b>Some <i>HTML</i> text</b> and an image<br><img src="cid:image1"><br>good!','html','utf-8') msgRootattach(msgText) fp = open('h:\\python\\jpg', 'rb') msgImage = MIMEImage(fpread()) fpclose() msgImageadd_header('Content-ID', '<image1>') msgRootattach(msgImage) smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgRootas_string()) smtpquit()
带附件的邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimemultipart import MIMEMultipart from emailmimetext import MIMEText from emailmimeimage import MIMEImage sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msgRoot = MIMEMultipart('related') msgRoot['Subject'] = 'test message' #构造附件 att = MIMEText(open('h:\\python\\jpg', 'rb')read(), 'base64', 'utf-8') att["Content-Type"] = 'application/octet-stream' att["Content-Disposition"] = 'attachment; filename="jpg"' msgRootattach(att) smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgRootas_string()) smtpquit()
群邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimetext import MIMEText sender = '***' receiver = ['***','****',……] subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msg = MIMEText('你好','text','utf-8') msg['Subject'] = subject smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgas_string()) smtpquit()
各种元素都包含的邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimemultipart import MIMEMultipart from emailmimetext import MIMEText from emailmimeimage import MIMEImage sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' # Create message container - the correct MIME type is multipart/alternative msg = MIMEMultipart('alternative') msg['Subject'] = "Link" # Create the body of the message (a plain-text and an HTML version) text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://wwwpythonorg" html = """\ <html> <head></head> <body> <p>Hi!<br> How are you?<br> Here is the <a href="http://wwwpythonorg">link</a> you wanted </p> </body> </html> """ # Record the MIME types of both parts - text/plain and text/html part1 = MIMEText(text, 'plain') part2 = MIMEText(html, 'html') # Attach parts into message container # According to RFC 2046, the last part of a multipart message, in this case # the HTML message, is best and preferred msgattach(part1) msgattach(part2) #构造附件 att = MIMEText(open('h:\\python\\jpg', 'rb')read(), 'base64', 'utf-8') att["Content-Type"] = 'application/octet-stream' att["Content-Disposition"] = 'attachment; filename="jpg"' msgattach(att) smtp = smtplibSMTP() smtpconnect('smtpcom') smtplogin(username, password) smtpsendmail(sender, receiver, msgas_string()) smtpquit()
基于SSL的邮件
#!/usr/bin/env python3 #coding: utf-8 import smtplib from emailmimetext import MIMEText from emailheader import Header sender = '***' receiver = '***' subject = 'python email test' smtpserver = 'smtpcom' username = '***' password = '***' msg = MIMEText('你好','text','utf-8')#中文需参数‘utf-8',单字节字符不需要 msg['Subject'] = Header(subject, 'utf-8') smtp = smtplibSMTP() smtpconnect('smtpcom') smtpehlo() smtpstarttls() smtpehlo() smtpset_debuglevel(1) smtplogin(username, password) smtpsendmail(sender, receiver, msgas_string()) smtpquit()
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍python实发邮件实例详解,包括了python实发邮件实例详解的使用技巧和注意事项,需要的朋友参考一下 yagmail 实现发邮件 yagmail 可以更简单的来实现自动发邮件功能。 1、安装 2、简单举例 3、给多个用户发送邮件 4、发送带附件邮件 以上就是本次介绍的关于python实发邮件的全部相关内容,感谢大家的学习和对呐喊教程的支持。
本文向大家介绍Django发送邮件功能实例详解,包括了Django发送邮件功能实例详解的使用技巧和注意事项,需要的朋友参考一下 以126邮箱为例 1 首先进126邮箱设置,开启: √POP3/SMTP服务 √IMAP/SMTP服务 成功开启后会获得一个授权码。 2. setting.py配置: 3. 发送邮件 考虑到发送邮件时耗时操作,邮件发送应该放入异步任务去执行。 以上知识点很简单,大家可以
本文向大家介绍Python发送邮件测试报告操作实例详解,包括了Python发送邮件测试报告操作实例详解的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Python发送邮件测试报告操作。分享给大家供大家参考,具体如下: 发邮件需要用到python两个模块,smtplib和email,这俩模块是python自带的,只需import即可使用。smtplib模块主要负责发送邮件,email模块主要
本文向大家介绍Python使用QQ邮箱发送邮件实例与QQ邮箱设置详解,包括了Python使用QQ邮箱发送邮件实例与QQ邮箱设置详解的使用技巧和注意事项,需要的朋友参考一下 直接上代码实例: QQ邮箱设置 更多关于Python使用QQ邮箱发送邮件的实例请查看下面的相关链接
本文向大家介绍python发送邮件实例分享,包括了python发送邮件实例分享的使用技巧和注意事项,需要的朋友参考一下 为了更好的理解邮件发送功能的实现,要先了解邮件发送系统的大致流程。首先 电子邮件之间的相互发送接受就像 邮局邮件发送一样,从一个站点(邮件发送服务器)到目的地站点(邮件接收服务器),然后目的地站点处理收到的邮件,并发送给接受人。每个邮件服务器即担任发送也担任接受邮件,并且每个
本文向大家介绍Python基于smtplib模块发送邮件代码实例,包括了Python基于smtplib模块发送邮件代码实例的使用技巧和注意事项,需要的朋友参考一下 smtplib模块负责发送邮件:是一个发送邮件的动作,连接邮箱服务器,登录邮箱,发送邮件(有发件人,收信人,邮件内容)。 email模块负责构造邮件:指的是邮箱页面显示的一些构造,如发件人,收件人,主题,正文,附件等。 email模块下