Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. def send_mail(self,event):
  2. content = self.expText.GetValue()
  3. mail = smtplib.SMTP('smtp.gmail.com',587)
  4. mail.ehlo()
  5. mail.starttls()
  6. mail.login('.....@gmail.com','password')
  7. mail.sendmail('.....@gmail.com','....@yahoo.com',content)
  8. mail.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement