Search K
Appearance
Appearance
The Get Emails node connects to a Microsoft 365 email account using a configured service connection and retrieves a list of email messages based on optional filters such as sender, recipient, subject, keywords, and date range.
This node is useful for automating workflows that depend on reading or processing recent email communications, such as triggering follow-up tasks based on incoming emails.
This node retrieves email messages from a user's Microsoft 365 mailbox via Graph API using filters and constraints defined by the user. Results are stored in a variable for downstream consumption.
Label | Type | Description |
---|---|---|
ThirdParty-Microsoft | text | The ID of the linked Microsoft 365 service account. |
Maximum Emails to Retrieve | number | The maximum number of emails to fetch. Must be between 1 and 1000. |
Filter To | text | (Optional) Filter emails sent to this address. |
Filter From | text | (Optional) Filter emails sent from this address. |
Filter Subject | text | (Optional) Only retrieve emails containing this string in the subject. |
Keywords search | text | (Optional) Search for keywords in the message body. |
Unread Emails | boolean | If true, only unread messages will be returned. |
Inbox Folder only | boolean | If true, restrict search to the Inbox folder. |
Date After | dateTime | (Optional) Only include emails received after this date. |
Date Before | dateTime | (Optional) Only include emails received before this date. |
Variable | Type | Description |
---|---|---|
Emails | list | A list of simplified email message objects matching the filter criteria. |
You want to monitor a shared mailbox for new customer support emails from a specific sender. You configure this node with:
Filter From
: support@client.com
Unread Emails
: true
Maximum Emails to Retrieve
: 50
Date After
: a recent date to avoid old messagesThe output can then be parsed or processed by a downstream automation step.
Required Service Accounts not found
Maximum Emails to Retrieve
is not between 1 and 1000, the task fails with: Maximum Emails to Retrieve must be between 1 and 1000
Failed to Execute: - <error message>
emailMessageSimple
objects; these typically include basic metadata like sender, subject, date, and body preview.