Communication & Messaging

Post RSS feed items from yesterday to Slack

Post RSS feed items from yesterday to Slack

Scheduled
High
6
Nodes
Scheduled
Trigger
High
Complexity
7/22/2025
Added

Workflow Overview

Total Nodes
6
Node Types
0

Workflow JSON

3.59 KB
{
  "id": 89,
  "name": "Post RSS feed items from yesterday to Slack",
  "nodes": [
    {
      "name": "Build our message",
      "type": "n8n-nodes-base.function",
      "position": [
        1160,
        400
      ],
      "parameters": {
        "functionCode": "// Create our Slack message\n// This will output a list of RSS items in the following format\n// Title - Description\nlet message = \"*:new: Posts from yesterday :new:*\\n\\n\";\n\n// Loop the input items\nfor (item of items) {\n  message += \"*<\" + item.json.link + \"|\" + item.json.title + \">*\\n\" + item.json.contentSnippet + \"\\n\\n\"; \n}\n\n// Return our message\nreturn [{json: {message}}];"
      },
      "typeVersion": 1
    },
    {
      "name": "Every Morning",
      "type": "n8n-nodes-base.cron",
      "position": [
        380,
        420
      ],
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "hour": 8
            }
          ]
        }
      },
      "typ...

Showing first 1000 characters. Click "Expand" to view the full JSON.