From 9ad88de6a89828efef613d19a6bc9f766f24fdb2 Mon Sep 17 00:00:00 2001 From: Shudhanshu Bisht <53632863+shudhanshubisht08@users.noreply.github.com> Date: Thu, 1 Oct 2020 12:13:17 +0530 Subject: [PATCH] Update scraper.py Uh can use beautiful soap module --- scraper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()