Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
import smtplib, sys #calling the smtp library
receivers=["ahmadkoki.trading@yahoo.com","ahmadkoki.jobs@yahoo.com"] #list of recievers
def send_email():
userName = input("Enter your Gmail: ") #sender's email address
passWord = input("Enter your pssword: ") #sender's password
message = input("Enter your message here: ") #message displayes to recievers
server = smtplib.SMTP_SSL('smtp.gmail.com', 465) #establishing connecton to the gmail smtp server
server.login(userName, passWord) #giving your log in details, gotten from https://www.afternerd.com/blog/how-to-send-an-email-using-python-and-smtplib/
server.sendmail(userName, receivers, message) #sending an email to the reciever
server.quit() #ending the program
ans=True
while ans: #used an infinitre while loop to keep the menu running
print("1.Add an email\n2.Delete an email\n3.Send an email\n4.Exit/Quit")
ans=input("What would you like to do?")
if ans=="1":
x=input("Enter the email ID you would like to add")
receivers.append(x) #adds the new email ID tot he list
print("\n Email Added")
elif ans=="2":
x=input("Enter the email ID you would like to delete")
receivers.remove(x) #removes the particuler email ID entered
print("\n Email Deleted")
elif ans=="3":
send_email() #calls the function send_email which was defined earleir
print("\n Email sent")
elif ans=="4":
sys.exit(0) #ends teh program
print("\n Goodbye")
elif ans !="":
print("\n Not Valid Choice Try again")