Outlook Reply
Outlook Reply
Section titled “Outlook Reply”Type: outlook-reply · Package: Outlook Activities v1.0.0
Reply to an existing email, preserving the thread of the conversation. You can reply only to the sender or to all recipients (reply all), and attach files.
How it works
Section titled “How it works”Using the EntryID of the email to reply (from Outlook Get Emails), create and send a reply with the text of body. With replyAll = true, you reply to all original recipients instead of just the sender.
Required parameters
Section titled “Required parameters”| Parameter | Editor | Description |
|---|---|---|
entryId | expression | EntryID of the email to reply (from correo.Id). |
body | expression | Response text. |
Optional parameters
Section titled “Optional parameters”| Parameter | Editor | Description |
|---|---|---|
session | session | Outlook Connect session. If omitted, use the default account. |
replyAll | boolean | Reply to all recipients. By default false. |
attachments | expression | List of file paths to attach to the response. |
Example
Section titled “Example”Automatically confirm receipt of each email:
For Each items = = correos itemVariable = correo └─ activities: Outlook Reply entryId = = correo.Id body = = "Hemos recibido su mensaje y lo estamos procesando. Gracias."Related activities
Section titled “Related activities”- Outlook Send Email — send a new email.
- Outlook Get Emails — get the email to reply to.