Merge #11883: replace incorrect call to sendmail with correct call to send_message

This commit is contained in:
R David Murray 2011-04-30 17:20:44 -04:00
commit d3f075a4c0
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ msg['To'] = you
# Send the message via our own SMTP server.
s = smtplib.SMTP()
s.sendmail(msg)
s.send_message(msg)
s.quit()