摘要:
##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... 阅读全文