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')