Re: Problems extracting attachment from email

2005-04-08 Thread Max M
foten wrote: The problem I'm having is when I'm trying to extract the attachement using f=open(Filename, "wb") f.write(msg.get_payload(decode=1)) f.close() Not the whole message is decoded and stored! When only trying f.write(msg.get_payload()) I see that the last 25

Re: Problems extracting attachment from email

2005-04-08 Thread foten
Lee Harr <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > On 2005-04-07, foten <[EMAIL PROTECTED]> wrote: > > The problem I'm having is when I'm trying to extract the > > attachement using > > f=open(Filename, "wb") > > f.write(msg.get_payload(decode=1)) > >

Re: Problems extracting attachment from email

2005-04-07 Thread Lee Harr
On 2005-04-07, foten <[EMAIL PROTECTED]> wrote: > The problem I'm having is when I'm trying to extract the > attachement using > f=open(Filename, "wb") > f.write(msg.get_payload(decode=1)) > f.close() > Not the whole message is decoded and stored! > When only trying >