Guest User

Untitled

a guest
May 21st, 2018
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. mail = smtplib.SMTP('smtp.gmail.com', 587)
  2. mail.ehlo()
  3. mail.starttls()
  4. mail.login('example@gmail.com','example123')
  5. mail.sendmail('example@gmail.com','example_1@gmail.com','Message Text')
  6. mail.close()
Add Comment
Please, Sign In to add comment