I have found that the SmtpWriter class "hides" all the
complexity in creating emails like you want to send.
It accepts a list of filenames that will be attachments
to the email you generate.
Check it out here:
http://motion.sourceforge.net/related/send_jpg.py
As an aside. Email was not really d
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Looking at the email package, it seems all the MIMExxx classes takes
> string but not file object as the payload. I need to handle very large
> MIME messages say up to 100M. And possibly many of them. Is email
> package sufficient. If
Looking at the email package, it seems all the MIMExxx classes takes
string but not file object as the payload. I need to handle very large
MIME messages say up to 100M. And possibly many of them. Is email
package sufficient. If not is it possible to extend it?
Looking at a previous thread it seem