for (my $msg = $messages->GetFirst(); $msg; $msg = $messages->GetNext()) { if($msg->ConversationTopic =~ /^MSS Security Incident Report /){ print "Subject => " . $msg->ConversationTopic . "\n"; print "Body: ". $msg->Text."\n"; ##Want to move message to another folder here## ##Want to mark the message read here## } }