-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Message priority #15
Comments
Should this also set |
I'm not sure. Ideally we'd be able to set both individually, so the user has the flexibility to set them however they desire. |
It seems from https://stackoverflow.com/a/12422845 that, technically, I.e., if a message is important, we should set |
Sounds good. Now how do we implement that? Should we add two properties to |
Hmm. I think @{
Subject = "Greetings, @Model.Salutation!";
Importance = MailImportance.High;
Priority = MailPriority.Urgent;
} (This also overlaps with #14 — I think we want a separate model, replacing |
It would be nice to be able to send messages with an importance.
MailKit exposes two interfaces for this: https://github.com/jstedfast/MimeKit/blob/master/MimeKit/XMessagePriority.cs
and https://github.com/jstedfast/MimeKit/blob/master/MimeKit/MessagePriority.cs
I'd like to be able to use one API so it sets both of these headers (for legacy support).
The text was updated successfully, but these errors were encountered: