Author |
|
benjamin.t Newbie
Joined: 25 March 2008 Location: Sweden
Online Status: Offline Posts: 1
|
Posted: 25 March 2008 at 5:08am | IP Logged
|
|
|
Imports MailBee.Pop3Mail
The Importance or Priority fields are not set on incoming mail.
Importance None {0}
Priority None {0}
But if I have a look at RawHeader it contains:
"...Importance: high..."
Why is it not automaticly set?
Best regards
Benjamin
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 25 March 2008 at 6:19am | IP Logged
|
|
|
We've just implemented the following example:
Code:
MailMessage msg = new MailMessage();
msg.LoadMessage(@"D:\test.eml");
MessageBox.Show(msg.Priority.ToString());
MessageBox.Show(msg.Importance.ToString()); |
|
|
The message contained the following headers:
Code:
X-Priority: 2 (High)
Importance: 1 |
|
|
And we got the following results:
Could you please provide us with the e-mail message which causes the issue as an .eml file? Use Request Support form for this purpose.
Best regards,
Andrew
|
Back to Top |
|
|