Sets the X-Priority for an email (Outlook specific). It's easier to use PriorityHigh()()()() or PriorityLow()()()() methods then using this method.

Namespace: Limilabs.Mail.Fluent
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
IFluentMail XPriority(
	int priority
)
Visual Basic
Function XPriority ( _
	priority As Integer _
) As IFluentMail
Visual C++
IFluentMail^ XPriority(
	int priority
)

Parameters

priority
Type: System..::..Int32
Message's priority value ranges from "1" to "5" where "1" is the highest priority, "3" is normal, and "5" is the lowest priority.

Return Value

Email configuration.

See Also