This extension will parse the result of an IMAP FETCH BODYSTRUCTURE co
+mmand into a perl data structure. It also provides helper methods to
+help pull information out of the data structure.
Sample from the module description Mail::IMAPClient::BodyStructure::Envelope:
{
subject => "subject",
inreplyto => "reference_message_id",
from => [ addressStruct1 ],
messageid => "message_id",
bcc => [ addressStruct1, addressStruct2 ],
date => "Tue, 09 Jul 2002 14:15:53 -0400",
replyto => [ adressStruct1, addressStruct2 ],
to => [ adressStruct1, addressStruct2 ],
sender => [ adressStruct1 ],
cc => [ adressStruct1, addressStruct2 ],
}
Hope this helps.
Seeking for Perl wisdom...on the process of learning...not there...yet!
|