| MailMessagePriority Property | 
Namespace: MailBee.Mime
 Syntax
Syntax Remarks
RemarksDifferent mail clients may set or interpret the priority settings differently while some of them may ignore it.
The value of this property is taken from the X-Priority and X-MSMail-Priority headers.
 Examples
Examplesusing MailBee; using MailBee.SmtpMail; using MailBee.Mime; class Sample { static void Main(string[] args) { // Load the message from file. MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); // Set the High priority level for the message. msg.Priority = MailPriority.High; // Send it. Smtp.QuickSend(msg); } }
 See Also
See Also