Outlook Mark Read
Outlook Mark Read
Section titled “Outlook Mark Read”Type: outlook-mark-read · Package: Outlook Activities v1.0.0
Mark an email as read or unread. It is very useful in processes that read unread messages: after processing each message, you mark it as read so that it is not taken again in the next run.
How it works
Section titled “How it works”From the EntryID of the email, its reading status changes according to isRead: true marks it as read (by default), false as unread.
Required parameters
Section titled “Required parameters”| Parameter | Editor | Description |
|---|---|---|
entryId | expression | Mail EntryID (from correo.Id). |
Optional parameters
Section titled “Optional parameters”| Parameter | Editor | Description |
|---|---|---|
session | session | Outlook Connect session. If omitted, use the default account. |
isRead | boolean | Mark as read (true, def.) or unread (false). |
Example
Section titled “Example”Typical pattern: read unread, process and mark as read so as not to reprocess.
Outlook Get Emails unreadOnly = true → output: correosFor Each items = = correos itemVariable = correo └─ activities: ... procesar ... Outlook Mark Read entryId = = correo.IdRelated activities
Section titled “Related activities”- Outlook Get Emails — read with
unreadOnly. - Outlook Move Email — move to a processed folder.