The FlagDueBy (Follow-Up Due Date) is not exposed in the MailMessage.Headers collection by UiPath’s Outlook activities, as it is part of the Outlook item properties, not the headers.
To retrieve FlagDueBy:
Outlook Interop: Use Invoke Method or Invoke Code activities to access Outlook COM objects and retrieve properties like MailItem.FlagDueBy.
If you’re using Desktop Outlook, you’ll need to interact with Outlook via Interop (using Microsoft Outlook Object Library).
Unfortunately, there isn’t an official way in UiPath’s default activities to directly access this metadata without using Interop or VBA.
If you want to explore an alternative, EWS (Exchange Web Services) or Office 365 activities can be used for cloud-based setups.
UiPath does not expose the Outlook Follow‑Up metadata (such as FlagDueBy) through the MailMessage.Headers dictionary, so you cannot retrieve it directly with Get Outlook Mail Messages. The only supported way is to use Outlook Interop or VBA to access those properties.