- 论坛徽章:
- 0
|
- #!/usr/bin/env python
- #encoding=utf-8
- #coded by 一只死猫
- from email.Header import Header
- from email.MIMEText import MIMEText
- from email.MIMEMultipart import MIMEMultipart
- from smtplib import SMTP
- class Google_SMTP:
- def __init__(self,user,psw):
- """
- 连接SMTP服务器并登录账户
- """
- self.msg=MIMEMultipart()
- self.smtp=SMTP("smtp.googlemail.com")
- self.smtp.docmd("EHLO server")
- self.smtp.starttls()
- self.smtp.login(user,psw)
- self.msg["From"]=user
-
- def attach(self,path):
- """
- 添加附件
- 参数说明:
- path:文件路径
- """
- self.path=path
- if self.path.find("\\")!=-1:
- self.fn=self.path.split("\\")[-1]
- elif self.path.find("\/")!=-1:
- self.fn=self.path.split("\/")[-1]
- else:
- self.fn=path
- self.attachment=MIMEText(open(self.path,"rb").read(),"base64","utf-8")
- self.attachment["Content-Type"]="application/octet-stream"
- self.attachment["Content-Disposition"]='attachment;filename="%s"'%self.fn
- self.msg.attach(self.attachment)
-
- def sendmail(self,to,subject,txt,attach=None):
- """
- 发送邮件
- 参数说明:
- to:收件人
- subject:邮件标题
- txt:邮件正文
- attach:附件路径,默认为None
- """
- self.msg["Accept-Language"]="zh-CN"
- self.msg["Accept-Charset"]="ISO-8859-1,utf-8"
- txt=MIMEText(txt)
- txt.set_charset("utf-8")
- self.msg["To"]=to
- self.msg["Subject"]=subject
- self.msg.attach(txt)
- if attach!=None:
- self.attach(attach)
- self.smtp.sendmail(self.msg["From"],self.msg["To"],self.msg.as_string())
复制代码 |
|