in reply to Mail::Box::Mbox adds a strange boundary when read email
You've called ->string on the object, asking for the message as a single string - which is what you've got.
If you want just some parts of the message, look at some of the other methods in Mail::Box::Message - there is a full selection of methods to pick apart the message, e.g. ->parts pulls apart the message into its constituent body parts.
Read the docs, have a play with these modules and don't forget to test with emails of different types (with and without attachments, with and without HTML alternatives, etc).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Mail::Box::Mbox adds a strange boundary when read email
by dlegia (Initiate) on Dec 19, 2006 at 14:13 UTC | |
by jbert (Priest) on Dec 19, 2006 at 15:19 UTC |