MailMessage.Priority Property

 

Gets or sets the priority of the e-mail message. Recommended alternative: System.Net.Mail.

Namespace:   System.Web.Mail
Assembly:  System.Web (in System.Web.dll)

public MailPriority Priority { get; set; }

Property Value

Type: System.Web.Mail.MailPriority

One of the MailPriority values.

MailMessage MyMessage = new MailMessage();
MyMessage.Priority = MailPriority.Low;

.NET Framework
Available since 1.1
Return to top
Show: