Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
hot fix
  • Loading branch information
Jackiebibili committed Oct 26, 2022
commit 7ebb2148434215e86701137369b0f756db222c7c
4 changes: 2 additions & 2 deletions apps/pushnotification/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ...secret import MAILER_PW
import os

port = 465 # For starttls
smtp_server = "smtp.gmail.com"
sender_email = "[email protected]"
subject = "Message from Ticketmaster Ticket Tracker"
app_password = MAILER_PW
app_password = os.environ.get('MAILER_PW', '')
1 change: 0 additions & 1 deletion secret.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os

CONN_SRV = os.environ.get('CONN_SRV')
MAILER_PW = os.environ.get('MAILER_PW', '')