zoukankan      html  css  js  c++  java
  • 为review board测试发邮件功能写得代码

    #!/usr/bin/env python
    #encoding=utf-8
    #导入smtplib和MIMEText
    import smtplib
    from email.mime.text import MIMEText
    #############
    #要发给谁,这里发给2个人
    mailto_list=["maolingzhi@360buy.com"]
    #####################
    #设置服务器,用户名、口令以及邮箱的后缀
    mail_host="mail.360buy.com"
    mail_user="xxxxx"
    mail_pass="xxxxx"
    mail_postfix="360buy.com"
    ######################
    def send_mail(to_list,sub,content):
        '''
        to_list:发给谁
        sub:主题
        content:内容
        send_mail("aaa@126.com","sub","content")
        '''
        me=mail_user+"<"+mail_user+"@"+mail_postfix+">"
        msg = MIMEText(content)
        msg['Subject'] = sub
        msg['From'] = me
        msg['To'] = ";".join(to_list)
        try:
            s = smtplib.SMTP()
            s.connect(mail_host)
            s.login(mail_user,mail_pass)
            s.sendmail(me, to_list, msg.as_string())
            s.close()
            return True
        except Exception, e:
            print str(e)
            return False
    if __name__ == '__main__':
        if send_mail(mailto_list,"subject","content"):
            print "发送成功"
        else:
            print "发送失败"

  • 相关阅读:
    css 正方体
    鼠标放上去,不同的cursor光标类型
    文件上传用到的函数 20150205
    PHP常用正则表达式汇总
    代码练习之 登陆 PHP会话控制 session cookie
    正则表达式全部符号解释
    字典转模型
    Day11 TableView
    Day10
    Day9
  • 原文地址:https://www.cnblogs.com/lexus/p/2373099.html
Copyright © 2011-2022 走看看