Hi,
Can you please confirm if we can get BCC details using Aspose Email dll.
I am getting bcc count zero always in the below code and also mailItem object has no bcc property…Actually i want bcc details from the outlook mail.
private string GetBCCAddress(Aspose.Email.Exchange.ExchangeMessageInfo mailItem, Aspose.Email.Mail.MailMessage mailMessage)
{
string mailBCCAddress = string.Empty;
if (mailMessage.Bcc.Count == 1)
return mailMessage.Bcc[0].Address;
else
return Convert.ToString(mailItem.CC).Replace(""", “”);
}
Thanks
Gowtham A