Commit a2cdc4b2 authored by 王志伟's avatar 王志伟

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

parent 7b4483c4
...@@ -391,11 +391,12 @@ def mail(): ...@@ -391,11 +391,12 @@ def mail():
smtp = smtplib.SMTP() smtp = smtplib.SMTP()
smtp.connect('smtp.exmail.qq.com,465') smtp.connect('smtp.exmail.qq.com,465')
smtp.login(my_sender, my_pass) smtp.login(my_sender, my_pass)
text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.baidu.com"
msg=MIMEText(mean_var_ctr_old_precise,'plain','utf-8') msg=MIMEText(text,'plain','utf-8')
msg['From']=formataddr(["高雅喆",my_sender]) # msg['From']=formataddr(["高雅喆",my_sender])
msg['To']=my_user1 + ',' + my_user2 # msg['To']=my_user1 + ',' + my_user2
msg['Subject']= str(datetime.date.today())+"-监控指标假设检验" # msg['Subject']= str(datetime.date.today())+"-监控指标假设检验"
# server=smtplib.SMTP_SSL("smtp.exmail.qq.com", 465) # server=smtplib.SMTP_SSL("smtp.exmail.qq.com", 465)
# server.login(my_sender, my_pass) # server.login(my_sender, my_pass)
smtp.sendmail(my_sender,[my_user1,my_user2],msg.as_string()) smtp.sendmail(my_sender,[my_user1,my_user2],msg.as_string())
......
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