We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ecaea5 + 68e9044 commit cac98e1Copy full SHA for cac98e1
apps/pushnotification/constants.py
@@ -1,7 +1,7 @@
1
-from ...secret import MAILER_PW
+import os
2
3
port = 465 # For starttls
4
smtp_server = "smtp.gmail.com"
5
sender_email = "[email protected]"
6
subject = "Message from Ticketmaster Ticket Tracker"
7
-app_password = MAILER_PW
+app_password = os.environ.get('MAILER_PW', '')
secret.py
@@ -1,4 +1,3 @@
import os
CONN_SRV = os.environ.get('CONN_SRV')
-MAILER_PW = os.environ.get('MAILER_PW', '')
0 commit comments