Part of the application I\'m working on for my client involves sending emails for events. Sometimes these are highly important. My client, and most of my client\'s clients,
Jumping in late here! Priority and Importance are not the same, but both are available to most developers to set. How do you choose? Well, Priority is defined in RFC 4021, 2.1.54, as a property that affects transmission speed and delivery ("normal", "urgent", and "non-urgent"). Importance is defined in RFC 4021, 2.1.52, as a property that is a hint from the originator to the recipients about how important a message is ("high", "normal", and "low").
For my use case, I'm targeting Outlook users and using MimeKit to build the emails. Importance is what most email clients care about, so here's what my code might look like:
using MimeKit;
var message = new MimeMessage();
message.Importance = MessageImportance.High;
I'll repost Steiger's links, because he's spot-on: