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

# Slack Integration

> Send enrichment results and workflow notifications directly to Slack channels and DMs from Sixtyfour.

Connect Slack to Sixtyfour and deliver workflow results to your team in real time — no CSV exports or manual handoffs.

<Warning>
  Only Enterprise plan customers can use the Slack integration in the Sixtyfour Platform.
</Warning>

## What You Can Do

| Capability           | Description                                                             |
| -------------------- | ----------------------------------------------------------------------- |
| **Send to channels** | Post workflow results to any public or private Slack channel            |
| **Send to DMs**      | Deliver results directly to individual team members                     |
| **Dynamic messages** | Use `{column}` substitution to build messages from your data            |
| **Mention by email** | Use `{@column}` to @mention Slack users by matching their email address |

## Quickstart

<Steps>
  <Step title="Connect your Slack workspace">
    In the [Sixtyfour dashboard](https://app.sixtyfour.ai), go to **Integrations** and select **Slack**. Authorize access to your Slack workspace. This grants Sixtyfour permission to post messages on your behalf.
  </Step>

  <Step title="Add a Slack output block to your workflow">
    Open the [Workflow Editor](https://app.sixtyfour.ai/workflows/new) and build your pipeline. Add a **Slack** block as the final output step.
  </Step>

  <Step title="Configure the message">
    Select a channel or DM recipient, then write your message template. Reference columns from your data with `{column_name}` syntax.

    <Note>Only channels where the Sixtyfour Slack app has been invited appear in the channel selector. Invite the app to a channel first with `/invite @Sixtyfour` in Slack.</Note>

    ```text theme={null}
    New lead found: {name} at {company}
    Title: {title}
    Email: {email}
    ```

    To @mention someone in your workspace, use `{@email}` where `email` is a column containing the person's Slack-linked email address.
  </Step>

  <Step title="Run the workflow">
    Run the workflow from the editor. Each row in your results triggers a Slack message with the column values filled in.
  </Step>
</Steps>

## Example Workflow

Enrich a list of leads, find their emails, filter to verified addresses, and notify your sales team in Slack:

```mermaid theme={null}
flowchart LR
  Search --> Enrich_People[Enrich People] --> Find_Email[Email address] --> Filter --> Slack
```

## Block Reference

| Field                | Value                                   |
| -------------------- | --------------------------------------- |
| Block type           | `send_slack_message`                    |
| Pipeline position    | Output (final block)                    |
| Requires integration | Yes — Slack workspace must be connected |
