aboutsummaryrefslogtreecommitdiff
path: root/app/dock_docker.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/dock_docker.py')
-rw-r--r--app/dock_docker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/dock_docker.py b/app/dock_docker.py
index 5869c21..bd6f053 100644
--- a/app/dock_docker.py
+++ b/app/dock_docker.py
@@ -28,7 +28,7 @@ def email(zipArchive):
from email.mime.base import MIMEBase
from email import encoders
- fromaddr = "navanchauhan@gmail.com"
+ fromaddr = config['SMTP']['EMAIL']
toaddr = toEmail
msg = MIMEMultipart()
@@ -46,9 +46,9 @@ def email(zipArchive):
p.add_header('Content-Disposition', "attachment; filename= %s" % filename)
msg.attach(p)
- s = smtplib.SMTP('smtp.gmail.com', 587)
+ s = smtplib.SMTP(config['SMTP']['SERVER'], config['SMTP']['PORT'])
s.starttls()
- s.login(fromaddr, 'okrs shoc ahtk idui')
+ s.login(fromaddr, config['SMTP']['PASSWORD'])
text = msg.as_string()
s.sendmail(fromaddr, toaddr, text)