Re: multiple email recipients

2006-02-20 Thread Tim Williams (gmail)
On 20/02/06, Rene Pijlman <[EMAIL PROTECTED]> wrote: [EMAIL PROTECTED]:>was wondering how to modify the code so as i can send to multiple email >recipients using "TO"? thanks.You add RFC 2822 headers.http://www.ietf.org/rfc/rfc2822.txt("3.6.3. Destination address fields

Re: multiple email recipients

2006-02-20 Thread Rene Pijlman
[EMAIL PROTECTED]: >was wondering how to modify the code so as i can send to multiple email >recipients using "TO"? thanks. You add RFC 2822 headers. http://www.ietf.org/rfc/rfc2822.txt ("3.6.3. Destination address fields") -- René Pijlman -- http://mail.python.org/mailman/listinfo/python-list

Re: multiple email recipients

2006-02-20 Thread Tim Williams (gmail)
On 20 Feb 2006 01:01:38 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:hii currently am using this email function that can send single email address[SNIP]was wondering how to modify the code so as i can send to multiple emailrecipients using "TO"? thanks. You are making the common mistake of t

multiple email recipients

2006-02-20 Thread eight02645999
quot;CC: %s" % CC, "", BODY), "\r\n") server = smtplib.SMTP(HOST) server.sendmail(FROM, [TO,CC],body) server.quit() was wondering how to modify the code so as i can send to multiple email recipients using "TO"? thanks. -- http://mail.python.org/mailman/listinfo/python-list