From 9fc3df3333d9e1a03628bf4c2e484d7fb06bc09f Mon Sep 17 00:00:00 2001 From: BulbulRathore <56462824+BulbulRathore@users.noreply.github.com> Date: Sat, 12 Oct 2019 00:54:55 -0400 Subject: [PATCH] Update emails with smtp --- emails with smtp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emails with smtp b/emails with smtp index ce85195..0798622 100644 --- a/emails with smtp +++ b/emails with smtp @@ -4,10 +4,10 @@ print("start") g.starttls() a=input("enter the email from which you want to send message") p=input("enter the password ") -b=input("enter the email whom you want to send messages") +b=input("enter the email whom you want to send messages!!") c=input("enter the message ") g.login(a,p) -print("loggin sucessfully") +print("#loggin sucessfully#") g.sendmail(a,b,c) g.close() print('end')