Hi All,
I'm using the Aspose Email ddl to grab some emails from accounts in a local mail exchange.
ExchangeMessageInfo msgInfo
var msgUri = msgInfo.UniqueUri;
var msg = client.FetchMessage(msgUri);
I've been testing with emails and found something very odd.
When I try to retrieve an email that contains more than one 'To" email address the value of
msg.To shows the first address correctly, but then shows only the name of the second email address and if there are any more email address they do not show.
E.G. I send an email to:
"123" <123@mail.com>; "abc" <abc@mail.com>; "def" <def@mail.com>;
The To value ends up being: (semi-colon shown to distinguish a different mail address)
"123" <123@mail.com>; "abc"
When I manually view the email, it contains all of the To: email addresses.
Is there some sort of setting that I am missing? Or is this a bug?
Grateful for any help,
Andrew
I'm using the Aspose Email ddl to grab some emails from accounts in a local mail exchange.
ExchangeMessageInfo msgInfo
var msgUri = msgInfo.UniqueUri;
var msg = client.FetchMessage(msgUri);
I've been testing with emails and found something very odd.
When I try to retrieve an email that contains more than one 'To" email address the value of
msg.To shows the first address correctly, but then shows only the name of the second email address and if there are any more email address they do not show.
E.G. I send an email to:
"123" <123@mail.com>; "abc" <abc@mail.com>; "def" <def@mail.com>;
The To value ends up being: (semi-colon shown to distinguish a different mail address)
"123" <123@mail.com>; "abc"
When I manually view the email, it contains all of the To: email addresses.
Is there some sort of setting that I am missing? Or is this a bug?
Grateful for any help,
Andrew