摘要: ##Python语言: Hotmail 发信#coding:utf-8from email.mime.text import MIMETextimport smtplibclass Hotmail (object ): def __init__ (self ,account,password): self.account="%s@Hotmail.com" %account self.password=password def send (self ,to,title,content): print self.account,self.pas... 阅读全文
posted @ 2012-10-11 17:51 代码示例 阅读(3376) 评论(0) 推荐(0) 编辑