Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import smtplib, ssl
mailid = input("Please enter Your email Id:\t")
password = input("Type your password and press enter:\t")
mailid_rec = input("Enter the mail id of receiver:\t")
message = input("Enter the message:\t")
server = smtplib.SMTP("smtp.gmail.com",587)
server.login(mailid,password)
server.sendmail(mailid,mailid_rec,message)