//For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
// initialize outlookFormat
OutlookMessage msgFormat = new OutlookMessage(Common.MapSourceFilePath(filePath));
// get metadata
OutlookMessageMetadata metadata = msgFormat.GetMsgInfo();
// display metadata
Console.WriteLine("Body: " + metadata.Body);
Console.WriteLine("DeliveryTime: " + metadata.DeliveryTime);
Console.WriteLine("Recipients: " + metadata.Recipients[0]);
Console.WriteLine("Subject: " + metadata.Subject);
Console.WriteLine("Attachments: " + metadata.Attachments[0]);