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
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))
> >
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
>
Hi community,
This is the task I'm struggling with:
- A user sends me an email with the subject '*3gp*'
including an attached .3gp-file.
- I then fetch that email, extracts the attachement and stores
it localy as a file.
- I then run a python-script that parses the stored file
and ge