Skip to content

Download email

Description

The Download Email activity connects to a configured email server (IMAP) and retrieves emails based on user-defined filters and criteria. This enables automation of workflows that rely on inbound communication such as receiving order confirmations, form responses, error reports, or system logs via email.

It supports filtering based on date range, read/unread status, subject, body content, and sender address. It can also intelligently extract metadata from forwarded emails.

Use case: Automatically download unread emails from a monitored inbox that contain invoices or CSV reports for further parsing and processing.


Input

Not Applicable


Output

Output TypeFormatDescription
DataTabularA table of retrieved email metadata and text

Configuration Fields

Field NameRequiredDescription
ConnectionYesThe mail server connection (IMAP) to be used. Includes credentials, server URL, and port.
Look up daysYesNumber of days in the past to look back when searching for emails.
Unread onlyNoIf enabled, only emails that are marked unread will be retrieved.
Forwarded emailsNoIf enabled, extracts the original sender, subject, and date from the body of forwarded messages.
Subject containsNoFilters emails whose subject line includes the specified keyword(s).
Body containsNoFilters emails whose message body includes the specified keyword(s).
From addressesNoFilters emails sent from one or more specific email addresses.

Sample Configuration

FieldValue
ConnectionGmail - IMAP
Look up days3
Unread onlytrue
Forwarded emailstrue
Subject containsInvoice, Monthly Report
Body containsPayment, Due
From addresses[email protected], [email protected]

Sample Output

DateSenderSubjectBody Snippet
2025-07-10 09:32:00[email protected]Invoice for JuneDear Customer, your invoice is attached.
2025-07-09 17:12:30[email protected]Monthly Report AvailableThe payment summary is ready to review.
2025-07-08 11:45:10[email protected]Forwarded: Alert ReportOriginal Sender: [email protected]

💡 You can chain this activity with an Extract Attachment or Parse Email Body activity for end-to-end automation.