How to extract Outlook mail column like "Flag Status", "Categories", "Flag Completed Date", "Size" etc. using an getoutlook mail message activity?

Hi ,
I am trying to extract some detail from outlook mail such as “Flag Status”, “Flag Completed Date”, “Size”.etc. How can I achieve it without involving any Ui Automation? Is it possible to achieve with get outlook mail message?

Thanks & Regards,
Jennish

Hi @gurumayum.sharma

Use below to get size

MailMessage(0).Attachments(0).ContentStream.Length

This gives for first mail message and first attachment if you want to get everything you might have to loop

Please mark as solution if found useful :slight_smile:

1 Like

Thanks @unknownay for quick response. Can you tell me how to get “Flag Completed Date” , “Flag Status” and “Categories” ? Thanks in advance