Re: email questions

2008-11-13 Thread Steve Holden
ted & irma slage wrote: > I tried to get a message to the below email address and this information > was sent back to me. Can you help me find out why it would not go > through, or send it to the place that may help me? > Thank you, > Irma Slage > [EMAIL PROTECTED] > >

email questions

2008-11-12 Thread ted & irma slage
I tried to get a message to the below email address and this information was sent back to me. Can you help me find out why it would not go through, or send it to the place that may help me? Thank you, Irma Slage [EMAIL PROTECTED] The error that the other server returned was: 553 553 5.3.0 <[

Re: email questions

2006-02-09 Thread Carsten Haese
On Thu, 2006-02-09 at 00:50, Dennis Lee Bieber wrote: > On Wed, 8 Feb 2006 10:49:27 -0800, Scott Frankel <[EMAIL PROTECTED]> > declaimed the following in comp.lang.python: > > > > > > mail..net > > Not sure why you feel you need to hide it -- I'm presuming it is the > same ISP in

Re: email questions

2006-02-08 Thread Scott Frankel
Yes, I was doing something wrong: I was connecting to the localhost after instantiation. All better now. Thanks for the tips! Scott On Feb 8, 2006, at 11:04 AM, Carsten Haese wrote: > > Then you're doing something wrong. The line > > s = smtplib.SMTP("mail.ispname.net") instantiates an SM

Re: email questions

2006-02-08 Thread Carsten Haese
On Wed, 2006-02-08 at 13:49, Scott Frankel wrote: > Seems I'm still having issues with syntax. > > From what I can tell from my mail client, my outgoing mail server > name is either > > mail..net This is it. > or > mail..net:@.com Not this. > The former yields the same so

Re: email questions

2006-02-08 Thread Heiko Wundram
Scott Frankel wrote: > > Seems I'm still having issues with syntax. > > From what I can tell from my mail client, my outgoing mail server > name is either > > mail..net > or > mail..net:@.com > > The former yields the same socket error on connect() that I reported > earlier. The latter yield

Re: email questions

2006-02-08 Thread Scott Frankel
Seems I'm still having issues with syntax. From what I can tell from my mail client, my outgoing mail server name is either mail..net or mail..net:@.com The former yields the same socket error on connect() that I reported earlier. The latter yields a "nonnumeric po

Re: email questions

2006-02-08 Thread Carsten Haese
On Wed, 2006-02-08 at 12:34, Scott Frankel wrote: > I'm looking for a way to send a simple, plain text email message > using Python. My initial attempts are failing with the following error: > > socket.error: (61, 'Connection refused') > > Does this imply that I do not have the machine's

email questions

2006-02-08 Thread Scott Frankel
I'm looking for a way to send a simple, plain text email message using Python. My initial attempts are failing with the following error: socket.error: (61, 'Connection refused') Does this imply that I do not have the machine's smtp server running? (I don't; and I'd like to avoid se