首页 > 编程语言 > 详细

python的邮件模块smtplib&email

时间:2016-05-23 19:18:20      阅读:246      评论:0      收藏:0      [点我收藏+]
import smtplib
import string
from email.mime.text import MIMEText


def send_mail(host, sender, sender_passwd, receiver, content_file, port="25"):
    # print "create smtp object"
    server = smtplib.SMTP()
    # print "conncect smtp server..."
    server.connect(host, port)
    # print "login smtp server..."
    server.login(sender, sender_passwd)
    # print "read content file..."
    fp = open(content_file, ‘r‘)
    content = fp.read()
    fp.close()
    msg = MIMEText(content, "html", "utf-8")
    msg[‘Subject‘] = "BiaoTi"        # 标题也可以放进外部变量里,
    msg[‘From‘] = sender
    msg[‘To‘] = receiver
    try:
        server.sendmail(sender, receiver, msg.as_string())
        print "发送成功!"
    except Exception, e:
        print "发送失败:" + str(e)
    server.quit()

send_mail("smtp.xxxx.com", "jiankong@xxxxx.com", "123456", "me@qq.com", "mail.txt")

邮件内容文件(自写的html格式文件):

<h1>Hello World</h1>

<hr color="blue">

Nice to meet you, Henry.


<b> This is my first smtplib email.</b>


ok, say Hi.

Byebye


123456

<br />

654321



最后收到的邮件显示如下:

技术分享

本文出自 “方向感” 博客,请务必保留此出处http://itech.blog.51cto.com/192113/1782213

python的邮件模块smtplib&email

原文:http://itech.blog.51cto.com/192113/1782213

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!