使用Python Smtplib 和email发送邮件

下面的文件打开没有使用with语句,是不规范的。实测可用。
给出的链接是在学习过程中用到的有用的链接,代码是根据这些链接拼凑起来的。代码实现了发送邮件和附件的功能。

#!/usr/bin/python
# -*- coding: UTF-8 -*-
# http://www.runoob.com/python/python-email.html
# http://blog.csdn.net/smart55427/article/details/48783393
# http://help.163.com/09/1224/17/5RAJ4LMH00753VB8.html
#http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386832745198026a685614e7462fb57dbf733cc9f3ad000

import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.mime.multipart import MIMEMultipart


# 第三方 SMTP 服务
mail_host="smtp.126.com"  #设置服务器
mail_user="[email protected]"    #用户名
mail_pass="xxxxxxxx"   #口令 


sender = '[email protected]'
receivers = ['[email protected]']  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱

# 创建带附件实例
message = MIMEMultipart()
message['From'] = 'AoChuan

你可能感兴趣的:(使用Python Smtplib 和email发送邮件)