>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
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
>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
> 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
__
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
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
;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
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
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
.