Specifies the priority level for the e-mail message.
[Visual Basic] Public Enum MailPriority
[C#] public enum MailPriority
[C++] __value public enum MailPriority
[JScript] public enum MailPriority
Members
Members name | Description |
Normal | Specifies that the e-mail message has normal priority. |
High | Specifies that the e-mail message has high priority. |
Low | Specifies that the e-mail message has low priority. |
Example
[C# - Set High Priority] SmtpMail oMail = new SmtpMail("TryIt"); // Set high priority oMail.Priority = MailPriority.High;
[VB - Set High Priority] Dim oMail As SmtpMail = New SmtpMail("TryIt") ' Set high priority oMail.Priority = MailPriority.High
See Also