Skip to content
Permalink
1e7eae9b30
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
23 lines (16 sloc) 1.47 KB
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import smtplib #calling the smtp library
def send_email(subject, message, receivers):
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/
for receiver_email in receivers: #iterating through the list of recievers
server.sendmail(userName, receivers, message) #sending an email to the reciever
server.quit()
if __name__ == "__main__":
receivers = ["ahmadkoki.trading@yahoo.com","ahmadkoki.jobs@yahoo.com"] #list of recievers
userName = input("Enter your Gmail: ") #Will ask for sender's email address
passWord = input("Enter your pssword: ") #Will ask for sender's password
subject = input("Enter message subject: ") #Will ask for email subject
message = input("Enter your message here: ") #Will ask for email message displayes to recievers
send_email(subject, message, receivers)