MailDefinition.Priority Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the priority of the email message.
public:
property System::Net::Mail::MailPriority Priority { System::Net::Mail::MailPriority get(); void set(System::Net::Mail::MailPriority value); };
public System.Net.Mail.MailPriority Priority { get; set; }
member this.Priority : System.Net.Mail.MailPriority with get, set
Public Property Priority As MailPriority
Property Value
One of the MailPriority values. The default is Normal.
Exceptions
The selected value is not one of the MailPriority values.
Examples
The following code example sets the Priority property to the value chosen from a DropDownList control on a Web Forms page.
This code example is part of a larger example provided for the MailDefinition class.
if (sourcePriority.SelectedValue == "Normal")
{
md.Priority = MailPriority.Normal;
}
else if (sourcePriority.SelectedValue == "High")
{
md.Priority = MailPriority.High;
}
else if (sourcePriority.SelectedValue == "Low")
{
md.Priority = MailPriority.Low;
}
If sourcePriority.SelectedValue = "Normal" Then
md.Priority = MailPriority.Normal
ElseIf sourcePriority.SelectedValue = "High" Then
md.Priority = MailPriority.High
ElseIf sourcePriority.SelectedValue = "Low" Then
md.Priority = MailPriority.Low
End If
Remarks
The Priority property indicates the relative priority of the email message.