##Python语言: Hotmail 发信
#coding:utf-8
from email.mime.text import MIMEText
import smtplib

class 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.password
server = smtplib.SMTP('smtp.live.com' )
## server.set_debuglevel(1)
server.docmd("EHLO server" )
server.starttls()
server.login(self.account,self.password)

msg = MIMEText(content)
msg['Content-Type' ]='text/plain; charset="utf-8"'
msg['Subject' ] = title
msg['From' ] = self.account
msg['To' ] = to
server.sendmail(self.account, to,msg.as_string())
server.close()

class QQMail(object ):
def __init__ (self ,account,password):
self.account="%s@qq.com" %account
self.password=password

def send (self ,to,title,content):
"""
send('zsp007@Hotmail.com,zsp747@Hotmail.com")
"""
print self.account,self.password
server = smtplib.SMTP('smtp.qq.com' )
server.set_debuglevel(1)
## server.docmd("EHLO server" )
## server.starttls()
server.login(self.account,self.password)

msg = MIMEText(content)
msg['Content-Type' ]='text/plain; charset="utf-8"'
msg['Subject' ] = title
msg['From' ] = self.account
msg['To' ] = to
server.sendmail(self.account, to,msg.as_string())
server.close()

 

if __name__=="__main__" :
Hotmail=Hotmail("user" ,"pass")
Hotmail.send("codemo@126.com","测试ok" ,"content" )

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-01
  • 2021-12-26
  • 2021-10-25
  • 2021-12-26
  • 2021-12-26
  • 2022-02-09
猜你喜欢
  • 2021-08-02
  • 2022-12-23
  • 2022-02-09
  • 2021-12-26
  • 2021-12-03
  • 2021-10-19
  • 2022-01-18
相关资源
相似解决方案