Python send email Gmail

Below is sample code for sending email through Gmail using Python

import smtplib;
fromaddr = 'email@gmail.com'
toaddrs = 'email@gmail.com'
msg = 'My first email message from Python'
username = 'email@gmail.com'
password = '###'
server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(username,password)
server.sendmail(fromaddr, toaddrs, msg)
server.quit()

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s