Email Enrichment

Email Enrichment configuration
Email Enrichment: verify and enrich email addresses

Find a person's business email address using their full name and company domain. Useful for outreach when you know WHO to contact but not their email.

Type: EMAIL_ENRICHMENT Color: Green (#22C55E) Credits: 10 per lookup

Configure fields

FieldTypeRequiredDescription
DomainFX formulaYesCompany website domain
Full nameFX formulaYesPerson's full name

Output

VariableDescription
{{email_enrich.email}}Best-guess business email
{{email_enrich.confidence}}Confidence score

How it works

The enrichment engine:

  1. Analyzes the company's email pattern (first.last@, f.last@, etc.)
  2. Checks against known email databases
  3. Verifies deliverability
  4. Returns the most likely email with confidence score

Common patterns

Outreach preparation

TinyTable (prospect list: name + company) → For Each →
  Email Enrichment → Update Row (add email column) → Delay (2s)

Research then reach

Tiny Scout (research company) → Person Enrichment (find key contact) →
  Email Enrichment (get their email) → GPT Writer (draft outreach) → HITL (review) → Send Email
Warning

Email enrichment finds the most LIKELY email, not guaranteed correct. Confidence scores below 0.7 should be verified before using for cold outreach.

Error handling

If this node fails during execution:

  1. The execution stops at this node (unless Continue on error is enabled)
  2. The error appears in the Execution History with the full error message
  3. Downstream nodes don't execute

To handle errors gracefully:

  • Enable Continue on error in the node settings
  • Add an If-Else node after to check if the operation succeeded
  • Route failures to a notification (Send Email, Send Slack)

Debugging

  1. Check the Execution History for the failed run
  2. Click the failed node to see its input and error
  3. Verify the input data is correct (check previous node outputs)
  4. Test with sample data using the Test tab