How do you access the body of an email? Looking at the MessageInfo object not seeing a .Body property to pull from. It has .Subject, .To .CC etc. Using the 30 day trial.
foreach (MessageInfo messageInfo in messageInfoCollection)
{
Console.WriteLine (messageInfo.Subject);
Console.WriteLine (messageInfo.Body);
}