SetFlagForRecipients
FollowUpManager.SetFlagForRecipients method (1 of 2)
Sets the flag for a draft message to remind recipients to follow-up.
public static void SetFlagForRecipients(MapiMessage message, string flagRequest)
Parameter |
Type |
Description |
message |
MapiMessage |
The MapiMessage in which a flag will be set. |
flagRequest |
String |
A string indicating the requested action action for recipients of an e-mail message. |
Exceptions
exception |
condition |
ArgumentNullException |
If message is null. |
ArgumentException |
If flagRequest is null or empty. |
InvalidOperationException |
If message is not set on a draft mode. |
See Also
FollowUpManager.SetFlagForRecipients method (2 of 2)
Sets the flag for a draft message to remind recipients to follow-up.
public static void SetFlagForRecipients(MapiMessage message, string flagRequest,
DateTime reminderTime)
Parameter |
Type |
Description |
message |
MapiMessage |
The MapiMessage in which a flag will be set. |
flagRequest |
String |
A string indicating the requested action action for recipients of an e-mail message. |
reminderTime |
DateTime |
A date indicating the date and time at which the reminder should occur. |
Exceptions
exception |
condition |
ArgumentNullException |
If message is null. |
ArgumentException |
If flagRequest is null or empty. |
InvalidOperationException |
If message is not set on a draft mode. |
See Also