8
n8n 한국어amn8n.com

n8n과 AI를 사용하여 매일 경제 뉴스를 요약 - 자동 이메일 보고서

중급

이것은Market Research, AI Summarization분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Set, Html, Wait, EmailSend, HttpRequest 등의 노드를 사용하며. Ollama LLM의 매일 재정 뉴스 요약 - 자동 이메일 보고서

사전 요구사항
  • 대상 API의 인증 정보가 필요할 수 있음
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "nPoiePylbYZrH7kn",
  "meta": {
    "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
    "templateCredsSetupCompleted": true
  },
  "name": "Summarize Daily Financial News Using n8n & AI – Auto Email Report",
  "tags": [],
  "nodes": [
    {
      "id": "de6a3f50-13db-4869-96c4-00efb1633b0d",
      "name": "일일 스케줄 트리거",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        0,
        240
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "triggerAtHour": 7
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "7e60e85a-8357-4fcb-a5af-37f47caa23dc",
      "name": "금융 뉴스 웹페이지 가져오기",
      "type": "n8n-nodes-base.httpRequest",
      "notes": "Url : https://www.ft.com/",
      "position": [
        220,
        240
      ],
      "parameters": {
        "url": "https://www.ft.com/",
        "options": {
          "timeout": 10000
        }
      },
      "notesInFlow": true,
      "typeVersion": 4.2
    },
    {
      "id": "1e4d85bf-311c-4f61-972b-bfac77d085e0",
      "name": "페이지 로드 대기 지연",
      "type": "n8n-nodes-base.wait",
      "position": [
        440,
        240
      ],
      "webhookId": "adff7750-f9b0-4796-915d-9c28dcc878b0",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "819d8425-cc56-4277-9b7b-c5de0794d2b0",
      "name": "뉴스 헤드라인 및 텍스트 추출",
      "type": "n8n-nodes-base.html",
      "notes": "Extract selected headlines, editor's picks, spotlight etc.",
      "position": [
        660,
        240
      ],
      "parameters": {
        "options": {
          "cleanUpText": true
        },
        "operation": "extractHtmlContent",
        "extractionValues": {
          "values": [
            {
              "key": "Headline #1",
              "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span4.layout-desktop__grid--column-start-1.layout-desktop__grid--row-start-1.layout-desktop__grid--with-border.layout--default > div > div > div > div.story-group-stacked__primary-story > div > div > div > div > div.primary-story__teaser"
            },
            {
              "key": "Headline #2",
              "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span6.layout-desktop__grid--column-start-5.layout-desktop__grid--row-start-1.layout-desktop__grid--with-border.layout--default > div > div > div > div > div > div.story-group__article.story-group__article--featured > div > div.featured-story-content > div.headline.js-teaser-headline.headline--scale-5.headline--color-black > a > span"
            },
            {
              "key": "Editor's Picks",
              "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span2.layout-desktop__grid--column-start-11.layout-desktop__grid--row-start-1.layout--default > div"
            },
            {
              "key": "Top Stories",
              "cssSelector": "#site-content > div:nth-child(3) > section > div",
              "skipSelectors": "h2"
            },
            {
              "key": "Spotlight",
              "cssSelector": "#site-content > div:nth-child(6) > section",
              "skipSelectors": "h2"
            },
            {
              "key": "Various News",
              "cssSelector": "#site-content > div:nth-child(8) > section",
              "skipSelectors": "h2"
            },
            {
              "key": "Europe News",
              "cssSelector": "#site-content > div:nth-child(13) > section",
              "skipSelectors": "h2"
            }
          ]
        }
      },
      "notesInFlow": true,
      "typeVersion": 1.2
    },
    {
      "id": "9e225c3b-1732-4d22-8a43-cab26c816865",
      "name": "추출된 뉴스 데이터 정제",
      "type": "n8n-nodes-base.set",
      "position": [
        880,
        240
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "5412a5ee-dbbe-4fcc-98a5-6fafc37b94d1",
              "name": "All data",
              "type": "string",
              "value": "=News :\n{{ $json['Headline #1'] }}\n\n\n\nFinancial news :\n\n{{ $('Extract News Headlines & Text\t').item.json['Headline #1'] }};\n\n{{ $('Extract News Headlines & Text\t').item.json['Headline #2'] }};\n\n{{ $('Extract News Headlines & Text\t').item.json['Editor\\'s Picks'] }};\n\n{{ $('Extract News Headlines & Text\t').item.json['Top Stories'] }};\n\n{{ $('Extract News Headlines & Text\t').item.json.Spotlight }};\n\n{{ $('Extract News Headlines & Text\t').item.json['Various News'] }};\n\n{{ $('Extract News Headlines & Text\t').item.json['Europe News'] }};\n\n"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "b6a11f10-2dc4-45b9-a9fd-ba4245fa28ca",
      "name": "AI 금융 뉴스 요약기",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        1100,
        240
      ],
      "parameters": {
        "text": "=Summarise this news :\n\n{{ $json['All data'] }}",
        "options": {
          "systemMessage": "You are an AI financial analyst. Your role is to read, understand, and summarize key financial news from today. The goal is to provide investors with a clear and concise market overview to support better investment decisions.\n\n\nInvestor Outlook\nToday’s news points to [bullish/bearish/neutral] sentiment. Watch for [economic event/earnings report] tomorrow, which could influence market direction.\n"
        },
        "promptType": "define"
      },
      "typeVersion": 1.6
    },
    {
      "id": "04f50544-39c1-456c-ba8e-3150ae902adb",
      "name": "일일 금융 요약 이메일 발송",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        1476,
        240
      ],
      "webhookId": "5ca3faf6-d857-4d58-8676-90e392fa9cc2",
      "parameters": {
        "text": "={{ $json.output }}",
        "options": {},
        "subject": "Today's News",
        "toEmail": "abc@gmail.com",
        "fromEmail": "xyz@gmail.com",
        "emailFormat": "text"
      },
      "credentials": {
        "smtp": {
          "id": "3QSx1pWoS0BZcK4c",
          "name": "SMTP account"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "2f4dab06-5786-4ab9-8a54-0b2bc56f6c22",
      "name": "LLM 채팅 모델",
      "type": "@n8n/n8n-nodes-langchain.lmChatOllama",
      "position": [
        1188,
        460
      ],
      "parameters": {
        "model": "llama3.2-16000:latest",
        "options": {}
      },
      "credentials": {
        "ollamaApi": {
          "id": "h9CEBFmYALm3FvZf",
          "name": "Ollama account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "3ac33bfa-1a93-495f-8f72-e10aba74543f",
      "name": "스티키 노트",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        580,
        -180
      ],
      "parameters": {
        "color": 5,
        "width": 320,
        "height": 320,
        "content": "📌 **Try It Out!**\n\nThis workflow auto-fetches top financial headlines, cleans the content, and uses AI to summarize it into a short investor-friendly email.\n\n🧠 Ideal for: Market analysts, finance teams, or daily newsletters.\n\n**Powered by:** n8n + LLM (e.g., GPT-4 or Gemini) + Email Node.\n"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "bf9bf774-b70b-4fcf-9265-0ad47885effd",
  "connections": {
    "2f4dab06-5786-4ab9-8a54-0b2bc56f6c22": {
      "ai_languageModel": [
        [
          {
            "node": "b6a11f10-2dc4-45b9-a9fd-ba4245fa28ca",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "de6a3f50-13db-4869-96c4-00efb1633b0d": {
      "main": [
        [
          {
            "node": "7e60e85a-8357-4fcb-a5af-37f47caa23dc",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9e225c3b-1732-4d22-8a43-cab26c816865": {
      "main": [
        [
          {
            "node": "b6a11f10-2dc4-45b9-a9fd-ba4245fa28ca",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "1e4d85bf-311c-4f61-972b-bfac77d085e0": {
      "main": [
        [
          {
            "node": "819d8425-cc56-4277-9b7b-c5de0794d2b0",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "b6a11f10-2dc4-45b9-a9fd-ba4245fa28ca": {
      "main": [
        [
          {
            "node": "04f50544-39c1-456c-ba8e-3150ae902adb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "7e60e85a-8357-4fcb-a5af-37f47caa23dc": {
      "main": [
        [
          {
            "node": "1e4d85bf-311c-4f61-972b-bfac77d085e0",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "819d8425-cc56-4277-9b7b-c5de0794d2b0": {
      "main": [
        [
          {
            "node": "9e225c3b-1732-4d22-8a43-cab26c816865",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 시장 조사, AI 요약

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수9
카테고리2
노드 유형9
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Oneclick AI Squad

Oneclick AI Squad

@oneclick-ai

The AI Squad Initiative is a pioneering effort to build, automate and scale AI-powered workflows using n8n.io. Our mission is to help individuals and businesses integrate AI agents seamlessly into their daily operations from automating tasks and enhancing productivity to creating innovative, intelligent solutions. We design modular, reusable AI workflow templates that empower creators, developers and teams to supercharge their automation with minimal effort and maximum impact.

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34