Commit 7b4483c4 authored by 王志伟's avatar 王志伟

数据指标波动假设检验统计

parent d2b0dbca
......@@ -388,14 +388,18 @@ my_user2='wangzhiwei@igengmei.com'
def mail():
ret=True
try:
smtp = smtplib.SMTP()
smtp.connect('smtp.exmail.qq.com,465')
smtp.login(my_sender, my_pass)
msg=MIMEText(mean_var_ctr_old_precise,'plain','utf-8')
msg['From']=formataddr(["高雅喆",my_sender])
msg['To']=my_user1 + ',' + my_user2
msg['Subject']= str(datetime.date.today())+"-监控指标假设检验"
server=smtplib.SMTP_SSL("smtp.exmail.qq.com", 465)
server.login(my_sender, my_pass)
server.sendmail(my_sender,[my_user1,my_user2],msg.as_string())
server.quit()
# server=smtplib.SMTP_SSL("smtp.exmail.qq.com", 465)
# server.login(my_sender, my_pass)
smtp.sendmail(my_sender,[my_user1,my_user2],msg.as_string())
smtp.quit()
except Exception:
ret=False
return ret
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment