Setting the message priority |
To set the priority of an email message assign the Priority property on the EmailMessage instance. Priorities are 1=High, 3=Normal, and 5=Low. The default priority is 3, N ormal.
Example
[C#] message.Priority = 1;
[Visual Basic] message.Priority = 1
|