> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oration.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Email

> Send an email message during a flow

The **Email** node sends an email to a specified recipient. Use it to notify teams, send confirmations, or deliver call summaries.

## Behavior

* Sends an email with the configured to, subject, and body fields
* Supports `{{variable}}` interpolation in all text fields
* Continues the flow on success or routes to the error path on failure

## Configuration

| Parameter | Type   | Default | Description                                                     |
| --------- | ------ | ------- | --------------------------------------------------------------- |
| `to`      | string | `""`    | Recipient email address. Supports `{{variable}}` interpolation. |
| `subject` | string | `""`    | Email subject line                                              |
| `body`    | string | `""`    | Email body content                                              |

## Output handles

| Handle      | Description             |
| ----------- | ----------------------- |
| **Success** | Email sent successfully |
| **Error**   | Email delivery failed   |

## Use cases

<AccordionGroup>
  <Accordion title="Missed call notification">
    Transfer (Failed) → Email to the support team with the caller's phone number and timestamp.
  </Accordion>

  <Accordion title="Appointment confirmation">
    After booking via an API Call, send a confirmation email to `{{customer_email}}` with the appointment details.
  </Accordion>

  <Accordion title="Call summary">
    After an AI Agent conversation, extract key details from the transcript and email a summary to the account manager.
  </Accordion>
</AccordionGroup>
