diff --git a/scraper.py b/scraper.py index 57da492..087d429 100644 --- a/scraper.py +++ b/scraper.py @@ -3,7 +3,7 @@ from email.MIMEText import MIMEText import smtplib -GMAIL_LOGIN = 'pyladiestest@gmail.com' +GMAIL_LOGIN = 'Support@gmail.com' GMAIL_PASSWORD = 'YOU NO CAN HAZ' def send_email(subject, message, from_addr=GMAIL_LOGIN, to_addr=GMAIL_LOGIN): @@ -11,7 +11,7 @@ def send_email(subject, message, from_addr=GMAIL_LOGIN, to_addr=GMAIL_LOGIN): msg['Subject'] = subject msg['From'] = from_addr msg['To'] = to_addr - msg['Reply-To'] = 'happyhours@noreply.com' + msg['Reply-To'] = 'Pullrrequest@noreply.com' server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587 server.ehlo()