8
n8n 한국어amn8n.com

AI Gmail: 읽어야 할 메일 우선순위 지정

고급

이것은Personal Productivity, AI Summarization분야의자동화 워크플로우로, 17개의 노드를 포함합니다.주로 Set, Gmail, Switch, Agent, ScheduleTrigger 등의 노드를 사용하며. Gmail과 GPT-4o를 활용한 자동 이메일 분류 및 라벨링

사전 요구사항
  • Google 계정 및 Gmail API 인증 정보
  • OpenAI API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "name": "AI Gmail: Prioritize What You Should Read",
  "nodes": [
    {
      "id": "9f0e4edb-32cc-45bf-96d8-91d76506b9e7",
      "name": "필드 편집",
      "type": "n8n-nodes-base.set",
      "position": [
        -816,
        0
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "e8fecc44-bfcf-42cd-a82d-b2963d8f4c94",
              "name": "id",
              "type": "string",
              "value": "={{ $json.id }}"
            },
            {
              "id": "4967158d-b4ee-41b4-a945-d19462d08886",
              "name": "text",
              "type": "string",
              "value": "={{ $json.text ? $json.text : $json.html}}"
            },
            {
              "id": "48cf009c-69ea-48aa-9de8-d53039aca4a5",
              "name": "from",
              "type": "string",
              "value": "={{ $json.from.value[0].name }}"
            },
            {
              "id": "cfd63044-5e92-44c3-ad28-16118c1b83cb",
              "name": "threadId",
              "type": "string",
              "value": "={{ $json.threadId }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "90c625c4-8b88-40a0-8ff1-293b5950aa85",
      "name": "AI 에이전트",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "onError": "continueRegularOutput",
      "position": [
        -592,
        0
      ],
      "parameters": {
        "text": "=You are a strict JSON generator.\n\nAnalyze the following email content and classify it into one of the following categories:\n\n- \"Action\" → bills, inquiries, reply needed, or require my attention.\n- \"Informational\" → updates, shipping, delivery alerts, social media updates or messages. \n- \"Spam\" → promotional or marketing emails.\n- \"Receipt\" → receipts of purchases or subscriptions.\n\nSummary: Extract the most important information of the email into 1 sentence, not more than 4000 characters. \n\nReturn your response in a JSON object, **only using** this exact format (this is an example — follow this structure exactly):\n{ \"label\": \"<one of the 4 categories>\", \"summary\": \"<Summary>\", \"id\": {{ $json.id }}, \"threadId\": {{ $json.threadId }} }\n\nExample output (follow this exact style):\n{ \"label\": \"Informational\", \"summary\": \"Your Apple Magic Keyboard has shipped and will arrive June 28.\", \"id\": \"abc123\" }\n\nRules:\n- Do NOT return markdown (no triple backticks, no ```json)\n- Use double quotes for keys and string values\n- Do NOT include explanations, extra text, or formatting\n- Return ONLY the one-line function call above, replacing values as needed and using the exact format above.\n\nReview your response to ensure you meet the rules before you generate the output. \n\n\nid: {{ $json.id }}\nthreadId: {{ $json.threadId }}\n\nEmail content:\n{{ $json.text }}\n",
        "options": {},
        "promptType": "define"
      },
      "retryOnFail": true,
      "typeVersion": 2,
      "alwaysOutputData": true
    },
    {
      "id": "75af6c6b-9706-42ed-985a-a763ea3e3473",
      "name": "구조화된 출력 파서",
      "type": "@n8n/n8n-nodes-langchain.outputParserStructured",
      "position": [
        -336,
        224
      ],
      "parameters": {
        "schemaType": "manual",
        "inputSchema": "{\n  \"type\": \"object\",\n  \"properties\": {\n    \"label\": { \"type\": \"string\" },\n    \"summary\": { \"type\": \"string\" },\n    \"id\": { \"type\": \"string\" },\n    \"threadId\": { \"type\": \"string\" }\n  },\n  \"required\": [\"label\", \"id\"]\n}\n"
      },
      "typeVersion": 1.3
    },
    {
      "id": "d6d8026a-1b11-40e4-8d30-94d4a7287848",
      "name": "일정 트리거",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -1264,
        0
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "hours"
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "464eae52-c683-43ff-8a4f-25d3acba5a93",
      "name": "OpenAI 채팅 모델",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -592,
        224
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4o",
          "cachedResultName": "gpt-4o"
        },
        "options": {}
      },
      "typeVersion": 1.2
    },
    {
      "id": "954ce5bb-495c-459c-981c-3bcdb0066308",
      "name": "모든 읽지 않은 메시지 가져오기",
      "type": "n8n-nodes-base.gmail",
      "position": [
        -1040,
        0
      ],
      "webhookId": "59626731-064c-469a-ab85-a95df2480031",
      "parameters": {
        "simple": false,
        "filters": {
          "readStatus": "unread"
        },
        "options": {},
        "operation": "getAll",
        "returnAll": true
      },
      "typeVersion": 2.1
    },
    {
      "id": "f71f88be-77aa-4dbb-bbdc-607ebfc3ddc7",
      "name": "스위치",
      "type": "n8n-nodes-base.switch",
      "position": [
        -128,
        -32
      ],
      "parameters": {
        "rules": {
          "values": [
            {
              "outputKey": "Action",
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "strict"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "7822ad3b-3f0a-4e7e-8f3c-96641f2e2d4a",
                    "operator": {
                      "type": "string",
                      "operation": "equals"
                    },
                    "leftValue": "={{ $json.output.label }}",
                    "rightValue": "Action"
                  }
                ]
              },
              "renameOutput": true
            },
            {
              "outputKey": "Informational",
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "strict"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "a076e618-a956-4ea7-a253-67e90a008495",
                    "operator": {
                      "name": "filter.operator.equals",
                      "type": "string",
                      "operation": "equals"
                    },
                    "leftValue": "={{ $json.output.label }}",
                    "rightValue": "Informational"
                  }
                ]
              },
              "renameOutput": true
            },
            {
              "outputKey": "Receipt",
              "conditions": {
                "options": {
                  "version": 2,
                  "leftValue": "",
                  "caseSensitive": true,
                  "typeValidation": "strict"
                },
                "combinator": "and",
                "conditions": [
                  {
                    "id": "873953c5-db09-450c-b5ed-59f695bfc9af",
                    "operator": {
                      "name": "filter.operator.equals",
                      "type": "string",
                      "operation": "equals"
                    },
                    "leftValue": "={{ $json.output.label }}",
                    "rightValue": "Receipt"
                  }
                ]
              },
              "renameOutput": true
            }
          ]
        },
        "options": {
          "fallbackOutput": "extra"
        }
      },
      "typeVersion": 3.2
    },
    {
      "id": "16c60f51-2387-4f43-92d5-ada08840b97e",
      "name": "OpenAI 폴백 모델",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -464,
        224
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-3.5-turbo",
          "cachedResultName": "gpt-3.5-turbo"
        },
        "options": {}
      },
      "typeVersion": 1.2
    },
    {
      "id": "29f90ac4-d629-493c-a825-98c72bd77399",
      "name": "이메일 삭제",
      "type": "n8n-nodes-base.gmail",
      "onError": "continueRegularOutput",
      "position": [
        96,
        288
      ],
      "webhookId": "3466588b-86a6-4072-8879-11997f48e1d4",
      "parameters": {
        "resource": "thread",
        "threadId": "={{ $json.output.threadId }}",
        "operation": "delete"
      },
      "typeVersion": 2.1
    },
    {
      "id": "90629ef6-75ba-499b-a27d-b47bde3deadb",
      "name": "이메일을 읽음으로 표시",
      "type": "n8n-nodes-base.gmail",
      "position": [
        432,
        -64
      ],
      "webhookId": "f3131e67-dfdb-40d8-9199-bb79069b0c33",
      "parameters": {
        "messageId": "={{ $json.id }}",
        "operation": "markAsRead"
      },
      "typeVersion": 2.1
    },
    {
      "id": "8ed659e1-293c-49d2-ad24-0bb8d0fe30ec",
      "name": "이메일에 '영수증' 라벨 추가",
      "type": "n8n-nodes-base.gmail",
      "position": [
        96,
        96
      ],
      "webhookId": "89f06cdb-8ae8-4e84-93ec-00c48d2cecfe",
      "parameters": {
        "labelIds": [
          "Label_3361902760602362460"
        ],
        "messageId": "={{ $json.output.id }}",
        "operation": "addLabels"
      },
      "typeVersion": 2.1
    },
    {
      "id": "42fa8db1-b003-415b-bf06-9f18b9823faa",
      "name": "이메일에 '조치 필요' 라벨 추가",
      "type": "n8n-nodes-base.gmail",
      "position": [
        96,
        -288
      ],
      "webhookId": "d3bf8de1-aa15-47d2-9c7b-6be8d3b4468f",
      "parameters": {
        "labelIds": [
          "Label_4190586288433010009",
          "IMPORTANT"
        ],
        "messageId": "={{ $json.output.id }}",
        "operation": "addLabels"
      },
      "typeVersion": 2.1
    },
    {
      "id": "690d7e73-c97e-467b-aafe-e4acb552f188",
      "name": "스티커 노트",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1320,
        -144
      ],
      "parameters": {
        "color": 5,
        "width": 208,
        "height": 304,
        "content": "### 💡 Schedule Trigger\nThis runs every hour. You can change the interval here depending on how often you want your Gmail to be processed."
      },
      "typeVersion": 1
    },
    {
      "id": "967d2796-e9ce-4dfa-90cb-948d1b573185",
      "name": "스티커 노트1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1312,
        256
      ],
      "parameters": {
        "width": 304,
        "height": 224,
        "content": "### ⚠️ Setup Required\n- Connect your Gmail account using OAuth2. \n- Add your OpenAI API Key under “API Credentials”.\n- Create these labels in your Gmail: Action, Informational, Spam and Receipt"
      },
      "typeVersion": 1
    },
    {
      "id": "06f7f246-155b-4b2d-86c0-0ecb86e84d3c",
      "name": "스티커 노트2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -640,
        -160
      ],
      "parameters": {
        "color": 5,
        "width": 432,
        "height": 320,
        "content": "### 💡 Customize Classification Logic\nYou can change the prompt to match your context. For example, tell the AI to detect more labels like `Meeting`, `Newsletter`, etc."
      },
      "typeVersion": 1
    },
    {
      "id": "61d814b5-f734-43a1-a588-c4722a0fd60c",
      "name": "스티커 노트3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -200,
        -160
      ],
      "parameters": {
        "color": 5,
        "height": 352,
        "content": "### 💡 Add More Labels\nWant to detect  `Meeting`, `Newsletter`, etc?\nAdd more conditions here and route them to different Gmail actions."
      },
      "typeVersion": 1
    },
    {
      "id": "011af85b-feb4-495d-8382-c42fdc5ff7c4",
      "name": "이메일에 '정보성' 라벨 추가",
      "type": "n8n-nodes-base.gmail",
      "position": [
        96,
        -96
      ],
      "webhookId": "d3bf8de1-aa15-47d2-9c7b-6be8d3b4468f",
      "parameters": {
        "labelIds": [
          "Label_4104611383523107189"
        ],
        "messageId": "={{ $json.output.id }}",
        "operation": "addLabels"
      },
      "typeVersion": 2.1
    }
  ],
  "connections": {
    "f71f88be-77aa-4dbb-bbdc-607ebfc3ddc7": {
      "main": [
        [
          {
            "node": "42fa8db1-b003-415b-bf06-9f18b9823faa",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "011af85b-feb4-495d-8382-c42fdc5ff7c4",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "8ed659e1-293c-49d2-ad24-0bb8d0fe30ec",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "29f90ac4-d629-493c-a825-98c72bd77399",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "90c625c4-8b88-40a0-8ff1-293b5950aa85": {
      "main": [
        [
          {
            "node": "f71f88be-77aa-4dbb-bbdc-607ebfc3ddc7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9f0e4edb-32cc-45bf-96d8-91d76506b9e7": {
      "main": [
        [
          {
            "node": "90c625c4-8b88-40a0-8ff1-293b5950aa85",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "29f90ac4-d629-493c-a825-98c72bd77399": {
      "main": [
        []
      ]
    },
    "d6d8026a-1b11-40e4-8d30-94d4a7287848": {
      "main": [
        [
          {
            "node": "954ce5bb-495c-459c-981c-3bcdb0066308",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "464eae52-c683-43ff-8a4f-25d3acba5a93": {
      "ai_languageModel": [
        [
          {
            "node": "90c625c4-8b88-40a0-8ff1-293b5950aa85",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "16c60f51-2387-4f43-92d5-ada08840b97e": {
      "ai_languageModel": [
        [
          {
            "node": "90c625c4-8b88-40a0-8ff1-293b5950aa85",
            "type": "ai_languageModel",
            "index": 1
          }
        ]
      ]
    },
    "954ce5bb-495c-459c-981c-3bcdb0066308": {
      "main": [
        [
          {
            "node": "9f0e4edb-32cc-45bf-96d8-91d76506b9e7",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "75af6c6b-9706-42ed-985a-a763ea3e3473": {
      "ai_outputParser": [
        [
          {
            "node": "90c625c4-8b88-40a0-8ff1-293b5950aa85",
            "type": "ai_outputParser",
            "index": 0
          }
        ]
      ]
    },
    "42fa8db1-b003-415b-bf06-9f18b9823faa": {
      "main": [
        [
          {
            "node": "90629ef6-75ba-499b-a27d-b47bde3deadb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "8ed659e1-293c-49d2-ad24-0bb8d0fe30ec": {
      "main": [
        [
          {
            "node": "90629ef6-75ba-499b-a27d-b47bde3deadb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "011af85b-feb4-495d-8382-c42fdc5ff7c4": {
      "main": [
        [
          {
            "node": "90629ef6-75ba-499b-a27d-b47bde3deadb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

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

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

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

고급 - 개인 생산성, AI 요약

유료인가요?

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

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

고급 사용자를 위한 16+개 노드의 복잡한 워크플로우

저자
Matt Chong

Matt Chong

@mattxchong

Automation nerd fueled by good coffee, deep curiosity, and clean flows.

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34