文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Python网络编程基础笔记-使用TLS加密email

Python网络编程基础笔记-使用TLS加密email

时间:2007-11-15  来源:jcodeer

# -*- coding:cp936 -*-
#!/usr/bin/env python
import sys,smtplib
"""
使用smtp.sina.com作为邮件发送服务器
1.使用TLS进行加密
2.使用ehlo,如果服务器不支持,则无法使用TLS
3.调用starttls
4.再次调用ehlo
5.像往常一样发送邮件
"""
server = "smtp.sina.com"
fromaddr= "[email protected]"
toaddr = "[email protected]"

msg = """
to:%s
from:%s
Hello,I am smtp server
""" %(toaddr,fromaddr)

s = smtplib.SMTP(server)
# 进行认证,通过后可以发送邮件
s.login("jcodeer","邮箱密码")
"""
ehlo返回值:
code:来自服务器的相应码。
string:这个响应码所对应的字符串描述。
"""
code = s.ehlo()[0]
usesesmtp = 1
if not (200 <= code <= 299):
    usesesmtp = 0
    """
    code和string与ehlo含义相同。
    """
    code = s.helo()[0]
    if not (200 <= code <= 299):
        raise SMTPHeloError(code,resp)
if usesesmtp and s.has_extn("tls"):
    """支持tls,则调用starttls(3)"""
    print ("starttls")
    s.starttls()
    """再次调用ehlo(4)"""
    code = s.ehlo()[0]
    if not (200 <= code <= 299):
        print("Could not EHLO after starttls")
        sys.exit(5)
    print("using tls connection")
else:
    """不支持tls,使用正常连接(2)"""
    print("server does not support tls,using normal connection")
"""发送邮件(5)"""
s.sendmail(fromaddr,toaddr,msg)

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载