Skip to content

Commit

Permalink
Merge pull request #20 from Jackiebibili/develop
Browse files Browse the repository at this point in the history
Hot fix
  • Loading branch information
Jackiebibili authored Oct 26, 2022
2 parents 6ecaea5 + 68e9044 commit cac98e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
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 = "noreply.ticketmasterbestseat@gmail.com"
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', '')

0 comments on commit cac98e1

Please sign in to comment.