Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions emails with smtp
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down