hotmail和QQ邮箱发信(python)


##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" )

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM