Hi,
I am trying to filter messages on POP3 by mail body and got this exception:
“Field ‘Body’ is not supported”
my code looks like this:
MailQueryBuilder queryBuilder = new MailQueryBuilder();
if (!string.IsNullOrEmpty(pBody))
{
queryBuilder.Body.Contains(pBody);
}
var mails = Pop3MailClient.ListMessages(queryBuilder .GetQuery());
Pop3MailClient.ListMessages throw the exception.
It is not possible to filter messages by body in POP3??
I’m using Aspose.Email, Version=18.1.0.0.
Please help me to solve this issue.
Naomi.