summaryrefslogtreecommitdiff
path: root/Doc/includes/email-simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/includes/email-simple.py')
-rw-r--r--Doc/includes/email-simple.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/includes/email-simple.py b/Doc/includes/email-simple.py
index 689511e4bb..b069ab0762 100644
--- a/Doc/includes/email-simple.py
+++ b/Doc/includes/email-simple.py
@@ -17,8 +17,7 @@ msg['Subject'] = 'The contents of %s' % textfile
msg['From'] = me
msg['To'] = you
-# Send the message via our own SMTP server, but don't include the
-# envelope header.
+# Send the message via our own SMTP server.
s = smtplib.SMTP()
-s.sendmail(me, [you], msg.as_string())
+s.sendmail(msg)
s.quit()