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

# Send Notification

> Send in-app notifications to your Langdock inbox.

<img src="https://mintcdn.com/langdock-34/cWyoB3RsITQmAUnM/images/workflows/nodes/notification.jpg?fit=max&auto=format&n=cWyoB3RsITQmAUnM&q=85&s=c03afe5b67d0b3fe817c7256a70504fa" alt="Send Notification" width="1920" height="903" data-path="images/workflows/nodes/notification.jpg" />

## Overview

The Send Notification node sends alerts directly to your Langdock inbox. Create custom messages to notify yourself about workflow events, completion status, important data, or when something needs attention.

<Info>
  **Best for**: Workflow completion alerts, error notifications, status updates,
  data summaries, and custom alerts requiring attention.
</Info>

## Recipients

Notifications are delivered to:

* **Manual/Form triggered workflows**: The user who triggered the workflow
* **Scheduled/Webhook/Integration triggered workflows**: The workflow owner (creator)

<Note>
  Currently, notifications can only be sent to the Langdock inbox of the user associated with the workflow run. To notify external recipients or specific team members, use the [Action node](/en/using-langdock/workflows/nodes/action-node) with Slack, Email, or other messaging integrations.
</Note>

## Configuration

### Message

The notification content to send. Supports three input modes:

**Manual mode**: Enter the message directly with variables and markdown formatting

**Auto mode**: AI automatically generates the message based on workflow context

**Prompt AI mode**: Provide instructions for the AI to generate the notification

```text theme={null}
Write a brief notification summarizing the workflow results for {{trigger.output.task_name}}
```

You can include any data from previous nodes using variables to create rich, contextual notifications.

## Example Notifications

### High Priority Alert

```handlebars theme={null}
🚨 **High Priority Customer Feedback** A high-priority support request was
received: **Customer:**
{{trigger.output.customer_name}}
**Email:**
{{trigger.output.email}}
**Category:**
{{agent.output.structured.category}}
**Sentiment:**
{{agent.output.structured.sentiment}}

**Summary:**
{{agent.output.structured.summary}}

**Action Required:** Please respond within 1 hour.
```

### Processing Complete

```handlebars theme={null}
✨ **Batch Processing Complete** Successfully processed
**Success:**
{{code.output.success_count}}
**Errors:**
{{code.output.error_count}}
**Duration:**
{{code.output.duration_minutes}}
minutes Check the logs for details.
```

## Markdown Formatting

Make your notifications easier to read with markdown:

```handlebars theme={null}
# Important Alert **Bold text** for emphasis *Italic text* for notes - Bullet
point 1 - Bullet point 2 - Bullet point 3 [Link to
dashboard](https://app.example.com/dashboard)
```

## Best Practices

<AccordionGroup>
  <Accordion title="Keep Messages Concise">
    Include essential information but don't overwhelm. Use bullet points for multiple items.
  </Accordion>

  <Accordion title="Add Context">
    Include relevant IDs, names, or links so you can quickly take action.
  </Accordion>

  <Accordion title="Use Clear Formatting">
    Structure your message with headers and sections for easy scanning.
  </Accordion>

  <Accordion title="Include Actionable Information">
    Tell yourself what to do next: "Review the dashboard", "Respond to customer",
    etc.
  </Accordion>

  <Accordion title="Test Your Notifications">
    Run test workflows to see how notifications appear in your inbox.
  </Accordion>
</AccordionGroup>

## Next Steps

<CardGroup cols={2}>
  <Card title="Variable Usage" icon="brackets-curly" href="/en/using-langdock/workflows/fundamentals/variable-usage">
    Learn how to use variables in notifications
  </Card>

  <Card title="Action" icon="play" href="/en/using-langdock/workflows/nodes/action-node">
    Send messages via integrations
  </Card>

  <Card title="Agent Node" icon="brain" href="/en/using-langdock/workflows/nodes/agent-node">
    Generate notification content with AI
  </Card>

  <Card title="Core Concepts" icon="lightbulb" href="/en/using-langdock/workflows/fundamentals/core-concepts">
    Understand workflow fundamentals
  </Card>
</CardGroup>
