Re: How do I get the content-disposition of a MIME::Entity part

2011-04-19 Thread Koffie Verkeerd
On Mar 11, 9:13 am, ramprasad...@gmail.com (Ramprasad Prasad) wrote: > I have a simple code that gets all image parts of a message > > foreach my $part($entity->parts){ > next if ($part->effective_type !~ > m{image}); > > push(@images,$part); > >... > > } > > But I want to get only the inli

How do I get the content-disposition of a MIME::Entity part

2011-03-11 Thread Ramprasad Prasad
I have a simple code that gets all image parts of a message foreach my $part($entity->parts){ next if ($part->effective_type !~ m{image}); push(@images,$part); ... } But I want to get only the inline images and not the attached images How can I achieve this ? $part->content_disposition(