Managing Follow-Up and Due Dates for Outlook MSG Files

Set Follow-Up and Due Dates for MSG Files

A follow-up flag marks an email message for some kind of action. Microsoft Outlook lets users flag messages and, in the flag set-up, assign a due date for the follow-up. Microsoft Outlook sends a reminder to the recipient to prompt them to follow up the email. Flagging emails and setting due dates programmatically lets software developers automate certain types of emails and help recipients remember to take action. For example, it could be used to send monthly messages to a sales team to remind them to complete their reports; or to send a message to all staff to remind them of a company meeting. Aspose.Email for .NET supports setting follow-up flag and due date for the MapiMessage objects using FollowUpManager and FollowUpOptions. There is a number of variants in which the follow-up flag can be set on a message. They are all used in the code sample below:

  1. Set a follow-up flag for a message
  2. Add a due date and reminder date to a message
  3. Add a flag to a recipient’s message.
  4. Mark as complete.
  5. Remove flag.
  6. Read follow up options.

Set Follow-Up Flags

The following code snippet shows you how to set a follow-up flag.

Set Follow-Up for Recipients

The following code snippet shows you how to set follow-up for recipients.

Mark Follow-Up Flags as Completed

The following code snippet shows you how to mark the follow-up flag as completed.

Remove Follow-Up Flags

The following code snippet shows you how to remove the follow-up flag.

Read Follow-Up Flag Options

The following code snippet shows you how to read follow-up flag options for a message.