Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. import smtplib
  2.  
  3. server=smtplib.SMTP(host="smtp.live.com:25")
  4. server.ehlo()
  5. server.starttls()
  6. server.login('polixsocial@hotmail.com', 'polpolpol1')
  7. for i in range(0,200):
  8.     server.sendmail('polixsocial@hotmail.com', 'guilleng07@hotmail.com', 'Praise the sun. \o/')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement