Messaging Nodes
Send alerts, notifications, and reports to your team or users. Integrate with popular messaging platforms to receive real-time updates from your IoT devices and automations.
Send emails via SMTP with attachments and HTML templates. Perfect for reports, logs, and formal notifications.
Configuration
Output Example
{
"payload": {
"messageId": "<abc@mail.com>",
"accepted": ["user@example.com"]
}
} Use app passwords for Gmail (not your main password). HTML templates support Mustache syntax for dynamic content.
telegram
Send and receive messages, photos, and commands via Telegram bots. The most popular choice for real-time IoT alerts.
Configuration
Output Example
{
"payload": {
"message_id": 123,
"chat": { "id": -100123 },
"text": "Hello!"
}
} Create bots via @BotFather. Use /setcommands to register bot commands. Chat IDs are negative for groups.
slack
Post messages and notifications to Slack channels and users. Great for team notifications and DevOps alerts.
Configuration
Output Example
{
"payload": {
"ok": true,
"ts": "1234567890.123456",
"channel": "C01234567"
}
} Use Block Kit Builder for rich messages. Webhooks are simpler but less flexible than bot tokens. Rate limit: 1 msg/sec per channel.
discord
Send messages and embeds to Discord channels via webhooks or bots. Popular for community alerts and gaming integrations.
Configuration
Output Example
{
"payload": {
"id": "123456789",
"content": "Alert!",
"embeds": [...]
}
} Webhooks are easiest - right-click channel → Integrations → Webhooks. Embeds support colors, fields, images, and footers.
Example Alerts
Common alert patterns for IoT and automation systems
Which Platform to Use?
Choose the right messaging platform for your use case
Quick Tips
Use the delay node to rate-limit notifications and batch similar alerts.
Telegram bots can receive commands - use /status to query device state remotely.
Store API tokens and webhook URLs in environment variables, never in flows.
Send critical alerts to multiple platforms for redundancy - email + Telegram for important events.