Lotus Notes automation - how to get data from System.Net.Mime.HeaderCollection

Hello, I’m looking for help - hot to extract data from System.Net.Mime.HeaderCollection
it contains structure like this:
{
“message”: “System.Net.Mime.HeaderCollection”,
“level”: “Information”,
“logType”: “User”,
“timeStamp”: “16:43:03”,
“processVersion”: “1.0.0”,
“jobId”: “2a144551-9ab6-4c36-8e21-408a26399d894”,
“robotName”: “AuditFord”,
“machineId”: 213229
}

I tried to get it by assign activity like:
var = mail.Headers(“Date”) but it return null
also
mail.Headers(“timeStamp”:slight_smile: does not work
I found this MailBee.Mime Namespace but UiPath does not recognize it for IBM Notes.

My goal is to get the date when the email has come to email and if someone marked it as read

Here is my workflow:

Also: here I can see this data - but how to access them?

Hi ,

I could get it by giving mail.Headers(“DateReceived”).

Also put a break point after reading mail message activity and open the output mail message raw view data from locals pane.

Paste it to notepad to see what are the headers that uipath could give you. I found DateReceived like that.