tags:

views:

61

answers:

1

Is it possible to "Flag an email" for followup using SMTPClient/MailMessage classes in .NET?

+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