python实现SMTP邮件发送功能
一直想着给框架添加邮件发送功能、所以整理下python下邮件发送功能
首先python是支持邮件的发送、内置smtp库、支持发送纯文本、HTML及添加附件的邮件。之后是邮箱、像163、qq、新浪等邮箱默认关闭SMTP服务,需要我们手动打开,打开后通过发件人邮箱、授权密码 通过发件人的SMTP服务发送
代码如下:
#!/usr/bin/env python # -*- coding: utf_8 -*- from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.multipart import MIMEBase from email import encoders from email.header import Header from email.utils import parseaddr, formataddr import smtplib class SendEmail: outbox = "pythondldysl01@163.com" # 发件箱地址 password = "wxqcl258258" # 授权密码 不是邮箱登录密码 inbox = "xxx@qq.com" # 收件箱地址 smtp_server = "smtp.163.com" # 发件箱服务器地址 def __init__(self): pass @classmethod def _format_address(cls, text): name, address = parseaddr(text) return formataddr((Header(name, "utf-8").encode(), address)) @classmethod def send_email_text(cls): msg = MIMEText("测试smtp邮件发送功能", "plain", "utf-8") # 第一个参数:邮件正文 # 第二个参数:邮件类型 纯文本 # 第三个参数:编码 msg["From"] = SendEmail._format_address("来自163的一封邮件 <%s>" % SendEmail.outbox) # 发件人姓名与发件箱地址 msg["To"] = SendEmail._format_address("管理员 <%s>" % SendEmail.inbox) # 收件人姓名与收件箱地址 msg["Subject"] = Header("来自SMTP的问候", "utf-8").encode() # 邮件标题 try: server = smtplib.SMTP(SendEmail.smtp_server, 25) # 构造smtp服务器连接 # server.set_debuglevel(1) # debug输出模式 默认关闭 server.login(SendEmail.outbox, SendEmail.password) # 登录smtp服务器 server.sendmail(SendEmail.outbox, [SendEmail.inbox], msg.as_string()) # 发送邮件 server.quit() print "邮件发送成功" except Exception, e: print str(e) print "邮件发送失败" if __name__ == '__main__': SendEmail.send_email_text()
这只是纯文本的内容、可以支持HTML格式的内容、修改内容如下:
msg = MIMEText("测试smtp邮件发送功能", "plain", "utf-8")
内容修改成HTML格式、 “plain”改成 “html”
最后是添加附件的邮件
代码如下:
@classmethod def send_email_multipart(cls): msg = MIMEMultipart() msg["From"] = SendEmail._format_address("来自163的一封邮件 <%s>" % SendEmail.outbox) # 发件人姓名与发件箱地址 msg["To"] = SendEmail._format_address("管理员 <%s>" % SendEmail.inbox) # 收件人姓名与收件箱地址 msg["Subject"] = Header("来自SMTP的问候", "utf-8").encode() # 邮件标题 msg.attach(MIMEText("测试添加附件的smtp邮件发送功能", "plain", "utf-8")) with open("E:\\work\\python project\\CreateProject\\20160421140953.xml", "rb") as f: # 设置附件的MIME和文件名 mime = MIMEBase("xml", "xml", filename="测试报告.xml") # 加上必要的头信息 mime.add_header('Content-Disposition', 'attachment', filename="测试报告.xml") mime.add_header('Content-ID', '<0>') mime.add_header('X-Attachment-Id', '0') # 把附件的内容读进来: mime.set_payload(f.read()) # 用Base64编码: encoders.encode_base64(mime) # 添加到MIMEMultipart: msg.attach(mime) try: server = smtplib.SMTP(SendEmail.smtp_server, 25) # 构造smtp服务器连接 # server.set_debuglevel(1) # debug输出模式 默认关闭 server.login(SendEmail.outbox, SendEmail.password) # 登录smtp服务器 server.sendmail(SendEmail.outbox, [SendEmail.inbox], msg.as_string()) # 发送邮件 server.quit() print "邮件发送成功" except Exception, e: print str(e) print "邮件发送失败"
以上就是python邮件发送功能的具体实现代码,希望对大家的学习有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

Running Python code in Notepad requires the Python executable and NppExec plug-in to be installed. After installing Python and adding PATH to it, configure the command "python" and the parameter "{CURRENT_DIRECTORY}{FILE_NAME}" in the NppExec plug-in to run Python code in Notepad through the shortcut key "F6".
