Guest User

Untitled

a guest
Nov 20th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. def email_alert(message, address):
  2. fromaddr = 'email_address_here'
  3. username = 'username_here'
  4. password = 'password_here'
  5. server = smtplib.SMTP('smtp.gmail.com:587')
  6. server.starttls()
  7. server.login(username, password)
  8. server.sendmail(fromaddr, address, message)
  9. server.quit()
Add Comment
Please, Sign In to add comment