FollowUpManager.SetFlagForRecipients
SetFlagForRecipients(MapiMessageItemBase, string)
Sets the flag for a draft message to remind recipients to follow-up.
public static void SetFlagForRecipients(MapiMessageItemBase message, string flagRequest)
Parameter | Type | Description |
---|
message | MapiMessageItemBase | The MapiMessageItemBase 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
SetFlagForRecipients(MapiMessageItemBase, string, DateTime)
Sets the flag for a draft message to remind recipients to follow-up.
public static void SetFlagForRecipients(MapiMessageItemBase message, string flagRequest,
DateTime reminderTime)
Parameter | Type | Description |
---|
message | MapiMessageItemBase | The MapiMessageItemBase 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