码迷,mamicode.com
首页 > 编程语言 > 详细

python的邮件模块smtplib&email

时间:2016-05-23 19:18:28      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:邮件   python   sm   

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

标签:邮件   python   sm   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!