EmailConnect icon

EmailConnect

Interact with EmailConnect API for email automation

Overview

This node interacts with the EmailConnect API to manage email domains and related resources. Specifically, the "Domain" resource with the "Get" operation retrieves detailed information about a specific email domain by its name or ID. This is useful for workflows that need to fetch domain details for monitoring, reporting, or further processing in email automation scenarios.

Practical examples include:

  • Fetching domain configuration before sending emails.
  • Verifying domain existence and properties before creating aliases or webhooks.
  • Integrating domain data into dashboards or logs.

Properties

Name Meaning
Domain Name or ID Select a domain from a dynamically loaded list or specify a domain ID using an expression. This identifies which domain's details to retrieve.

Output

The output is a JSON object containing the full details of the requested domain as returned by the EmailConnect API. The structure typically includes domain metadata such as domain name, ID, configuration settings, verification status, and other domain-specific attributes.

No binary data is output by this operation.

Example output snippet (conceptual):

{
  "id": "domain-id",
  "domain": "example.com",
  "configuration": {
    "allowAttachments": true,
    "includeEnvelopeData": false
  },
  "status": "verified",
  ...
}

Dependencies

  • Requires an active connection to the EmailConnect API.
  • Needs an API authentication credential configured in n8n to authorize requests.
  • The node uses internal methods to load domain options dynamically from the API.

Troubleshooting

  • Common issues:

    • Invalid or missing domain ID: Ensure the domain exists and the correct ID or name is provided.
    • API authentication errors: Verify that the API key or token is correctly set up and has sufficient permissions.
    • Network connectivity problems: Confirm that n8n can reach the EmailConnect API endpoint.
  • Error messages:

    • "Unknown error occurred": Generic catch-all; check network and credentials.
    • API response errors will be passed through; review the message for clues (e.g., "Domain not found").

To resolve errors, verify input parameters, credentials, and network access.

Links and References

Discussion