I have the following code:
var eml = imap.GetMessageByUID(uid);
IMail email = new MailBuilder().CreateFromEml(eml);
The method CreateFromEml
successfully creates the IMail
object but the "From" property contains a null value for address.
The value I am getting is:
"Name='Microsoft Exchange Server 2010' Address=''"
Name is populated, address is not. Why is the address not populated?