[issue12293] wrong arguments passed to SMTP.sendmail in example

2011-06-09 Thread Fredrik Wendt
New submission from Fredrik Wendt fred...@wendt.se: On http://docs.python.org/library/email-examples.html#email-examples the current example (v2.7.1) at the bottom incorrectly calls SMTP.sendmail() with a single recipient e-mail address. It should be a list of addresses. -- assignee:

[issue12293] wrong arguments passed to SMTP.sendmail in example

2011-06-09 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: docs@python - r.david.murray nosy: +r.david.murray versions: +Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12293

[issue12293] wrong arguments passed to SMTP.sendmail in example

2011-06-09 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: The required arguments are an RFC 822 from-address string, a list of RFC 822 to-address strings (a bare string will be treated as a list with 1 address)... -- resolution: - invalid stage: - committed/rejected status: open -