For some reason, I had a hard time tracking down MailPriority using OpenPop.NET. It's not part of the OpenPop package, and is, instead, part of System.Net.Mail.

using System;
namespace System.Net.Mail
{
public enum MailPriority
{
Normal,
Low,
High
}
}


/sigh

It's a little incestuously scoped, as if System.Net.Mail were to strangely disappear or move, you're toast in OpenPop, but that's more my neurosis than a huge failing for OpenPop. But even a trivial mapping (which, yes, I can do myself) would remove the need to use using System.Net.Mail everywhere I want to use MailPriority.

Labels: , ,