Help for this page
use Win32::OLE; use Win32::OLE::Const '.*Outlook'; # load the relevant constants ... map { $_->CurrentItem } # get the MailItem object @inspectors;
my @mail_items = grep { $_->Class == olMail } map { $_->CurrentItem } # get the MailItem object grep { $_->Caption eq 'Untitled - Message (Plain Text)' } @inspectors;