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

2011-06-09 Thread R. David Murray
R. David Murray 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 -> closed

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

2011-06-09 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: docs@python -> r.david.murray nosy: +r.david.murray versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___

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

2011-06-09 Thread Fredrik Wendt
New submission from Fredrik Wendt : 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: docs@python compo