Re: [perl-python] sending email

2005-01-30 Thread Chris Mattern
YYusenet wrote: > Xah Lee wrote: > [snip] >> >> The first two has glaring problems. I'm sorry i forgot what they >^ ^^ >> are. > > [snip] > > How can you complain about *Mail::Mailer* and *Mail::Send* when you > don't even k

Re: [perl-python] sending email

2005-01-30 Thread YYusenet
Xah Lee wrote: [snip] The first two has glaring problems. I'm sorry i forgot what they ^ ^^ are. [snip] How can you complain about *Mail::Mailer* and *Mail::Send* when you don't even know what they are? -- k g a b e r t (at) x

Re: [perl-python] sending email

2005-01-30 Thread Tad McClellan
Jürgen Exner <[EMAIL PROTECTED]> wrote: > Xah Lee wrote: > [...] >> Here's how the situation stands as of 2001 March: > ^^ > > Well, at least now we know why Mr. Lee is a little bit behind Mr. Lee is a *big* behind! -- Tad McClellan

Re: [perl-python] sending email

2005-01-30 Thread Jürgen Exner
Xah Lee wrote: [...] > Here's how the situation stands as of 2001 March: ^^ Well, at least now we know why Mr. Lee is a little bit behind jue -- http://mail.python.org/mailman/listinfo/python-list

Re: [perl-python] sending email

2005-01-29 Thread Dan Perl
I recommend the example in the Python Library Reference as a better example: http://www.python.org/doc/lib/SMTP-example.html. You can also find the entire description of the smtplib module in the same section (http://www.python.org/doc/lib/module-smtplib.html). Xah Lee's example is missing:

[perl-python] sending email

2005-01-29 Thread Xah Lee
# -*- coding: utf-8 -*- # Python # Suppose you want to spam your friend, and you have lots of # friends. The solution is to write a program to do it. After a gander # at python docs, one easily found the module for the job. # see http://python.org/doc/2.3.4/lib/SMTP-example.html # the code is a b