Search K
Appearance
Appearance
The Update Email node allows you to programmatically modify an email in a Microsoft mailbox. Supported actions include marking an email as read and moving it to a different folder.
UpdateEmail
Field Label | Type | Required | Description |
---|---|---|---|
Email ID | Text | Yes | The unique identifier of the email to update. Usually retrieved from a previous "Get Emails" node. |
Field Label | Type | Description |
---|---|---|
Set to Read | Boolean | If true, marks the email as read. Default is false if not provided. |
Move to Folder | Text | The display name or folder path to move the email to (e.g. "Archive", "Processed", "CustomFolder/SubFolder"). |
This node does not return specific data but updates the state of an email in the mailbox. If successful:
taskSuccess = true
statusReturn = "Completed"
taskMessage = "Email Sent"
If unsuccessful:
taskSuccess = false
statusReturn = "Fail"
taskMessage
will contain the error details.This node is typically used after retrieving emails via the Get Emails or Get Emails by Mailbox node. You can pass the Email ID
from that node to this one to update its status or move it.
"Email ID"
must match the format returned by Microsoft Graph API or the earlier email retrieval task.ThirdParty-Microsoft
service account.Mail.ReadWrite
).Error While Sending Email
, the error will usually contain clues about permission or folder issues.