Is it possible to "Flag an email" for followup using SMTPClient/MailMessage classes in .NET?
views:
61answers:
1
+1
A:
It's my understanding that the flag is not part of the POP/MIME/SMTP specs and is simply a sorting feature offered by many applications. You can set the importance high, normal and low.
MailMessage msg = new MailMessage
{
Priority = MailPriority.High,
Subject = "High priority message."
};
Paul Alexander
2009-05-06 02:47:16