logologo
Get Started
Guide
Development
Plugins
API
English
简体中文
Get Started
Guide
Development
Plugins
API
English
简体中文
logologo
Workflow
Overview
Getting Started

Triggers

Overview
Collection Event
Schedule
Pre-action Event
Post-action Event
Custom Action Event
Approval
Webhook

Nodes

Overview

AI

Large Language Model

Flow Control

Condition
Loop
Variables
Parallel Branch
Subflow
Output
Delay
End

Calculation

Calculation
Date Calculation
JSON Query
JSON Variable Mapping

Data Operations

Create Data
Update Data
Query Data
Delete Data
SQL Operation

Manual Processing

Manual Processing
Approval
CC

Extended Types

HTTP Request
JavaScript
Notification
Send Email
Response
Response Message
Variables
Execution History
Version Management
Advanced Options

Extension Development

Overview
Extending Trigger Types
Extending Node Types
API Reference
Previous PageNotification
Next PageResponse

#Send email

#Introduction

Used to send emails. Supports content in text and HTML formats.

#Create node

In the workflow configuration interface, click the plus ("+") button in the flow to add a "Send email" node:

20251031130522

#Node configuration

20251031131125

Each option can use variables from the workflow context. For sensitive information, global variables and secrets can also be used.

#FAQ

#Gmail sending frequency limit

When sending some emails, you may encounter the following error:

{
  "code": "ECONNECTION",
  "response": "421-4.7.0 Try again later, closing connection. (EHLO)\n421-4.7.0 For more information, go to\n421 4.7.0 About SMTP error messages - Google Workspace Admin Help 3f1490d57ef6-e7f7352f44csm831688276.30 - gsmtp",
  "responseCode": 421,
  "command": "EHLO"
}

This is because Gmail rate-limits sending requests from domains that are not specified. When deploying the application, you need to configure the server's hostname to the domain you have configured in Gmail. For example, in a Docker deployment:

services:
  app:
    image: nocobase/nocobase
    hostname: <your-custom-hostname> # Set to your configured sending domain

Reference: Google SMTP Relay - Intermittent problems