diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-04-30 21:29:08 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-04-30 21:29:08 (GMT) |
commit | 361a7df323d759a45062f3299984f4848535bae4 (patch) | |
tree | f9c14f1456241e540d17a6933c4e306c35206600 /Doc/includes | |
parent | 7461298c9cf7f89e312048013dd9a203b80f37fc (diff) | |
parent | bb754b503c617821db907a88ae148e2bb0304d31 (diff) | |
download | cpython-361a7df323d759a45062f3299984f4848535bae4.zip cpython-361a7df323d759a45062f3299984f4848535bae4.tar.gz cpython-361a7df323d759a45062f3299984f4848535bae4.tar.bz2 |
Merge #11883: fix email examples by adding 'localhost' to SMTP constructor calls
Diffstat (limited to 'Doc/includes')
-rw-r--r-- | Doc/includes/email-dir.py | 2 | ||||
-rw-r--r-- | Doc/includes/email-mime.py | 2 | ||||
-rw-r--r-- | Doc/includes/email-simple.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/includes/email-dir.py b/Doc/includes/email-dir.py index b1b45b8..cc5529e 100644 --- a/Doc/includes/email-dir.py +++ b/Doc/includes/email-dir.py @@ -105,7 +105,7 @@ must be running an SMTP server. fp.write(composed) fp.close() else: - s = smtplib.SMTP() + s = smtplib.SMTP('localhost') s.sendmail(opts.sender, opts.recipients, composed) s.quit() diff --git a/Doc/includes/email-mime.py b/Doc/includes/email-mime.py index ec7e371..a90edc1 100644 --- a/Doc/includes/email-mime.py +++ b/Doc/includes/email-mime.py @@ -26,6 +26,6 @@ for file in pngfiles: msg.attach(img) # Send the email via our own SMTP server. -s = smtplib.SMTP() +s = smtplib.SMTP('localhost') s.send_message(msg) s.quit() diff --git a/Doc/includes/email-simple.py b/Doc/includes/email-simple.py index fdf6f82..077568d 100644 --- a/Doc/includes/email-simple.py +++ b/Doc/includes/email-simple.py @@ -18,6 +18,6 @@ msg['From'] = me msg['To'] = you # Send the message via our own SMTP server. -s = smtplib.SMTP() +s = smtplib.SMTP('localhost') s.send_message(msg) s.quit() |