Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # send mail
  2. import smtplib
  3. from email.mime.text import MIMEText
  4.  
  5. str_msg = u"Загружен файл {}, для {} записей найдено {} соответствий".format(down_file_name, total_uids_count, matched_uids_count)
  6. msg = MIMEText(str_msg.encode('utf-8'), 'plain', 'UTF-8')
  7. msg['Subject'] = 'wargaming match'
  8. msg['From'] = "wg@hubrus.com"
  9. msg['To'] = "wg@hubrus.com"
  10. s = smtplib.SMTP('localhost')
  11. s.sendmail("wg@hubrus.com", "wg@hubrus.com", msg.as_string())
  12. s.quit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement