Re: Can't Get Email Interface Working

2007-04-07 Thread Eric Price
>From: hlubenow <[EMAIL PROTECTED]> >To: python-list@python.org >Subject: Re: Can't Get Email Interface Working >Date: Sun, 08 Apr 2007 01:59:53 +0200 > >You can use it just like that: > >--- > >from simplemail import E

Re: Can't Get Email Interface Working

2007-04-07 Thread hlubenow
Eric Price wrote: > Good grief! And they call a 722-line program "simple"?! LOL! > I did what I need to do with a __one_line_shell_script__ LOL! > Naw, if I have to go through all that, I'll skip on python this time > around, thank you very much! > Eric Ok, "simplemail.py" is quite long. That's b

Re: Can't Get Email Interface Working

2007-04-07 Thread Eric Price
>From: Dennis Lee Bieber <[EMAIL PROTECTED]> >To: python-list@python.org >Subject: Re: Can't Get Email Interface Working >Date: Sat, 07 Apr 2007 20:07:53 GMT > >On Sat, 07 Apr 2007 13:42:38 -0500, "Eric Price" ><[EMAIL PROTECTED]> declaimed the follo

Re: Can't Get Email Interface Working

2007-04-07 Thread Eric Price
> Complain to the providers of the server? Or find out what the host >name is for the outgoing SMTPd connection, and use it directly. Complaining isn't going to help. How do I determine the outgoing smtpd connection and how do I use it directly? TIA, Eric __

Re: Can't Get Email Interface Working

2007-04-07 Thread Eric Price
From: "Tim Williams" <[EMAIL PROTECTED]> To: "Eric Price" <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED], python-list@python.org Subject: Re: Can't Get Email Interface Working Date: Sat, 7 Apr 2007 17:53:28 +0100 On 07/04/07, Eric Price <[EMAIL PROTECTED]> w

Re: Can't Get Email Interface Working

2007-04-07 Thread Tim Williams
On 07/04/07, Eric Price <[EMAIL PROTECTED]> wrote: > Good grief! And they call a 722-line program "simple"?! LOL! > I did what I need to do with a __one_line_shell_script__ LOL! > Naw, if I have to go through all that, I'll skip on python this time around, > thank you very much! > Eric Yup, its no

Re: Can't Get Email Interface Working

2007-04-07 Thread Eric Price
;To: python-list@python.org >Subject: Re: Can't Get Email Interface Working >Date: Sat, 07 Apr 2007 17:33:38 +0200 > >Eric Price wrote: > > > Hi; > > I'm writing a script that includes an email function. So I went to the > > cookbook and dug up this, and tweake

Re: Can't Get Email Interface Working

2007-04-07 Thread hlubenow
Eric Price wrote: > Hi; > I'm writing a script that includes an email function. So I went to the > cookbook and dug up this, and tweaked it just a bit to make it easier to > get it to work, but it throws an error: > def createMail(sender, recipient, subject, html, text): > ... import Mime

Can't Get Email Interface Working

2007-04-07 Thread Eric Price
Hi; I'm writing a script that includes an email function. So I went to the cookbook and dug up this, and tweaked it just a bit to make it easier to get it to work, but it throws an error: >>>def createMail(sender, recipient, subject, html, text): ... import MimeWriter, mimetools, cStringIO .