Subject line with smtplib.sendmail()

2007-03-20 Thread Boudreau, Emile
Hey, I'm trying to send mail from my server to my machine with test results. I can send the email no problem however, the email doesn't contain a recipient list or a subject line. I was wondering how would I go about getting the information on the actual To and Subject lines so that I know

Re: Subject line with smtplib.sendmail()

2007-03-20 Thread Fredrik Lundh
Boudreau, Emile wrote: I'm trying to send mail from my server to my machine with test results. I can send the email no problem however, the email doesn't contain a recipient list or a subject line. I was wondering how would I go about getting the information on the actual To and Subject

RE: Subject line with smtplib.sendmail()

2007-03-20 Thread Boudreau, Emile
: Tuesday, March 20, 2007 11:08 AM To: python-list@python.org Subject: Re: Subject line with smtplib.sendmail() Boudreau, Emile wrote: I'm trying to send mail from my server to my machine with test results. I can send the email no problem however, the email doesn't contain a recipient list

Re: Subject line with smtplib.sendmail()

2007-03-20 Thread kyosohma
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fredrik Lundh Sent: Tuesday, March 20, 2007 11:08 AM To: [EMAIL PROTECTED] Subject: Re: Subject line with smtplib.sendmail() Boudreau, Emile wrote: I'm trying to send mail from my server to my machine with test results. I can send the email

RE: Subject line with smtplib.sendmail()

2007-03-20 Thread Boudreau, Emile
access to all the variables I have? thanks Emile Boudreau -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boudreau, Emile Sent: Tuesday, March 20, 2007 1:51 PM To: python-list@python.org Subject: RE: Subject line with smtplib.sendmail() Thanks

Re: Subject line with smtplib.sendmail()

2007-03-20 Thread Gabriel Genellina
En Tue, 20 Mar 2007 15:18:01 -0300, Boudreau, Emile [EMAIL PROTECTED] escribió: Sorry folks. Scrape the last one that I sent. I noticed that it sends the email perfectly if the code is not in any of my methods but the second I insert it into a method I get the ugly email that I described in

Re: Subject line with smtplib.sendmail()

2007-03-20 Thread Ben Finney
Gabriel Genellina [EMAIL PROTECTED] writes: Perhaps you are using an indented triple quoted string ? The indentation goes into the string itself. You may use a global (module) constant to hold the string, by example. Rather than letting technical issues dictate where to