Communication Nodes

Communication nodes let your workflows send messages to people and systems. Use them to deliver email notifications, post updates to Slack channels, or respond to users in real-time chat.

All Communication Nodes

Email (SMTP)Action

Send emails via any SMTP server. Supports HTML and plain text bodies, attachments, CC/BCC, reply-to, and custom headers.

SlackAction

Post messages to Slack channels or direct messages. Supports Block Kit formatting, thread replies, and file uploads.

Chat ReplyAction

Send a response back to the user in the active chat session. Used with Chat trigger workflows and AI agent conversations.

Email (SMTP)

The Email node sends messages through an SMTP server. Configure your mail server credentials once and reuse them across workflows.

SettingDescription
ToOne or more recipient email addresses. Supports expressions for dynamic recipients.
FromSender email address and optional display name.
SubjectEmail subject line. Supports expression interpolation.
BodyHTML or plain text content. Use expressions to inject dynamic data.
CC / BCCOptional carbon copy and blind carbon copy recipients.
Reply-ToOptional reply-to address different from the sender.
AttachmentsAttach files from previous node outputs or from the sandboxed file system.
Email configuration example
To: {{ $json.customerEmail }}
From: notifications@yourcompany.com
Subject: Order #{{ $json.orderId }} Confirmed
Body (HTML):
  <h1>Thank you, {{ $json.customerName }}!</h1>
  <p>Your order has been confirmed and will ship within 2 business days.</p>

Bulk email

To send emails to multiple recipients, combine the Email node with a Loop node that iterates over a list of addresses. Each iteration sends one personalized email.

Slack

The Slack node posts messages to channels or users in your Slack workspace. Authenticate with a Slack Bot token stored in credentials.

SettingDescription
ChannelChannel name or ID. Use # prefix for public channels, or a user ID for DMs.
TextMessage content. Supports Slack markdown formatting.
BlocksOptional Block Kit JSON for rich message layouts with buttons, sections, and images.
ThreadOptional thread timestamp to reply within an existing thread.
File UploadUpload files from previous node outputs as Slack file attachments.
Slack message with Block Kit
Channel: #engineering-alerts
Text: Deployment complete
Blocks:
  [
    {
      "type": "section",
      "text": {
        "type": "mrkdwn",
        "text": "*Deployment successful*\nService: {{ $json.service }}\nVersion: {{ $json.version }}"
      }
    }
  ]

Chat Reply

The Chat Reply node sends a response back to the user in an active chat session. It is designed to work with the Chat trigger and AI Agent workflows where a real-time conversation is in progress.

The reply is delivered through NodeLoom's real-time messaging system. The user sees the response instantly in the chat widget or agent chat interface.

SettingDescription
MessageThe text to send back to the user. Supports expressions and Markdown formatting.

Chat context

The Chat Reply node automatically inherits the session context from the Chat trigger. You do not need to manually specify which conversation to reply to.