수신함 어시스턴트
중급
이것은Ticket Management, AI Summarization분야의자동화 워크플로우로, 14개의 노드를 포함합니다.주로 If, Code, Gmail, Slack, GmailTrigger 등의 노드를 사용하며. AI 이메일 어시스턴트: ChatGPT 요약 및 Slack 요약을 통해 Gmail 이메일을 우선 처리
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •Slack Bot Token 또는 Webhook URL
- •Google Sheets API 인증 정보
- •OpenAI API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "SjqkLDL6TjA4qhXe",
"meta": {
"instanceId": "b37534993660b16a153506cfc0b71f79e6887c5743e20be7be0d1ad118ae0486",
"templateCredsSetupCompleted": true
},
"name": "InboxPilot",
"tags": [],
"nodes": [
{
"id": "66e1eca5-d977-4ead-8138-8eab926dfbfb",
"name": "Gmail 트리거",
"type": "n8n-nodes-base.gmailTrigger",
"position": [
0,
0
],
"parameters": {
"filters": {},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
}
},
"credentials": {
"gmailOAuth2": {
"id": "jwGNRLOxPPW8br4P",
"name": "Gmail account 2"
}
},
"typeVersion": 1.2
},
{
"id": "87e1fc81-4e18-4f7b-b3f3-d4cdc8f740a6",
"name": "모델에 메시지 보내기",
"type": "@n8n/n8n-nodes-langchain.openAi",
"position": [
220,
0
],
"parameters": {
"modelId": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini",
"cachedResultName": "GPT-4O-MINI"
},
"options": {},
"messages": {
"values": [
{
"content": "=You're an email assistant for a busy startup founder. Classify the email content into the following fields and return **only raw JSON** (no markdown):\n\n{\n \"summary\": [Short summary of the email in 1 sentence],\n \"urgency\": [High, Medium, Low],\n \"category\": [Investor, Customer Lead, Support, Spam, Other],\n \"intent\": [Short phrase, like \"Request for call\", \"Feature request\", \"Follow-up\"]\n}\n\nAnalyze the following email:\n\nSubject: {{ $json.Subject }}\nBody: {{ $json.snippet }}\n\nReturn only valid JSON with no extra formatting.\n"
}
]
}
},
"credentials": {
"openAiApi": {
"id": "aJq3jnvAs37EGBXF",
"name": "n8n free OpenAI API credits"
}
},
"typeVersion": 1.8
},
{
"id": "c457ff9f-2b06-4b15-91e8-41fb9dff5ffa",
"name": "조건문",
"type": "n8n-nodes-base.if",
"position": [
880,
0
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "or",
"conditions": [
{
"id": "1ec24de2-2e64-4386-aa00-62603a63aef5",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.urgency }}",
"rightValue": "High"
},
{
"id": "0ed8beae-9ef7-46b7-9aca-5cd83412bceb",
"operator": {
"name": "filter.operator.equals",
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.urgency }}",
"rightValue": "Medium"
}
]
}
},
"typeVersion": 2.2
},
{
"id": "ce7d28e9-9ace-4ec8-8408-0d7e6059675f",
"name": "코드",
"type": "n8n-nodes-base.code",
"position": [
580,
0
],
"parameters": {
"mode": "runOnceForEachItem",
"jsCode": "let raw = $json.message?.content || $json.message || \"\";\n\n// Remove triple backticks (```json ... ```)\nraw = raw.replace(/```json|```/g, '').trim();\n\n// Fix smart quotes and other formatting problems\nraw = raw.replace(/[“”]/g, '\"').replace(/[‘’]/g, \"'\");\n\ntry {\n const parsed = JSON.parse(raw);\n\n return {\n summary: parsed.summary || \"No summary provided\",\n urgency: parsed.urgency || \"Unknown\",\n category: parsed.category || \"Unknown\",\n intent: parsed.intent || \"Unknown\"\n };\n} catch (err) {\n return {\n summary: \"⚠️ Failed to parse GPT output\",\n urgency: \"Unknown\",\n category: \"Unknown\",\n intent: \"Unknown\",\n error: err.message,\n original: raw\n };\n}\n"
},
"typeVersion": 2
},
{
"id": "353b70b5-eaad-4636-9bed-23aec2556d47",
"name": "메시지 보내기",
"type": "n8n-nodes-base.slack",
"position": [
1080,
-100
],
"webhookId": "8d75cfb9-ac55-4745-b37d-013995518ff1",
"parameters": {
"text": "=📬 *Important Email Detected* *Summary:* {{ $('Code').item.json.summary }} *Urgency:* {{ $('Code').item.json.urgency }} 📥 From: {{ $('Gmail Trigger').item.json.From }}",
"select": "channel",
"channelId": {
"__rl": true,
"mode": "list",
"value": "C093BMY0ESX",
"cachedResultName": "alerts"
},
"otherOptions": {},
"authentication": "oAuth2"
},
"credentials": {
"slackOAuth2Api": {
"id": "Af5ru4q6Grpps5kG",
"name": "Slack account"
}
},
"typeVersion": 2.3
},
{
"id": "e9d6f184-b2ef-41aa-9df0-e58861a93a2e",
"name": "메시지에 레이블 추가",
"type": "n8n-nodes-base.gmail",
"position": [
1080,
40
],
"webhookId": "2e09aafe-567b-4205-8905-bc0cafee56cb",
"parameters": {
"labelIds": [
"Label_2"
],
"messageId": "={{ $node[\"Gmail Trigger\"].json[\"id\"] }}",
"operation": "addLabels"
},
"credentials": {
"gmailOAuth2": {
"id": "jwGNRLOxPPW8br4P",
"name": "Gmail account 2"
}
},
"typeVersion": 2.1
},
{
"id": "f1109948-ab40-4f82-84f7-23fdbfc40d6b",
"name": "메시지에 레이블 추가1",
"type": "n8n-nodes-base.gmail",
"position": [
1300,
-100
],
"webhookId": "2e09aafe-567b-4205-8905-bc0cafee56cb",
"parameters": {
"labelIds": [
"Label_4585164412428469148"
],
"messageId": "={{ $node[\"Gmail Trigger\"].json[\"id\"] }}",
"operation": "addLabels"
},
"credentials": {
"gmailOAuth2": {
"id": "jwGNRLOxPPW8br4P",
"name": "Gmail account 2"
}
},
"typeVersion": 2.1
},
{
"id": "73ea5151-4ef3-43b7-a73e-cd5d7f736363",
"name": "시트에 행 추가",
"type": "n8n-nodes-base.googleSheets",
"position": [
1520,
-100
],
"parameters": {
"columns": {
"value": {
"From": "={{ $('Gmail Trigger').item.json.From }}",
"Summary": "={{ $('Code').item.json.summary }}",
"Urgency": "={{ $('Code').item.json.urgency }}",
"Category": "={{ $('Code').item.json.category }}",
"Timestamp": "={{ $now }}"
},
"schema": [
{
"id": "Timestamp",
"type": "string",
"display": true,
"required": false,
"displayName": "Timestamp",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "From",
"type": "string",
"display": true,
"required": false,
"displayName": "From",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Summary",
"type": "string",
"display": true,
"required": false,
"displayName": "Summary",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Urgency",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Urgency",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Category",
"type": "string",
"display": true,
"required": false,
"displayName": "Category",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit?usp=drivesdk",
"cachedResultName": "Inbox Log"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1HFV5dnUJndtPhEM",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "c588a35e-0230-4134-bf06-d6a0d3d5cda1",
"name": "시트에 행 추가1",
"type": "n8n-nodes-base.googleSheets",
"position": [
1300,
60
],
"parameters": {
"columns": {
"value": {
"From": "={{ $('Gmail Trigger').item.json.From }}",
"Summary": "={{ $('Code').item.json.summary }}",
"Urgency": "={{ $('Code').item.json.urgency }}",
"Category": "={{ $('Code').item.json.category }}",
"Timestamp": "={{ $now }}"
},
"schema": [
{
"id": "Timestamp",
"type": "string",
"display": true,
"required": false,
"displayName": "Timestamp",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "From",
"type": "string",
"display": true,
"required": false,
"displayName": "From",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Summary",
"type": "string",
"display": true,
"required": false,
"displayName": "Summary",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Urgency",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Urgency",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Category",
"type": "string",
"display": true,
"required": false,
"displayName": "Category",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit?usp=drivesdk",
"cachedResultName": "Inbox Log"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1HFV5dnUJndtPhEM",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "8f2cd361-317c-4aab-8712-4ac47d337af3",
"name": "일정 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
0,
220
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 19
}
]
}
},
"typeVersion": 1.2
},
{
"id": "34161afd-e52b-4d6d-a973-9c4c63cd218c",
"name": "시트에서 행 가져오기",
"type": "n8n-nodes-base.googleSheets",
"position": [
220,
220
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit#gid=0",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1YQgWOSF-UA9gR1_pc6RzJ3UeANqnqi29ldoUd_2CPug/edit?usp=drivesdk",
"cachedResultName": "Inbox Log"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "1HFV5dnUJndtPhEM",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6
},
{
"id": "d8eeb0ff-6d67-4586-8512-4d4da995de27",
"name": "코드1",
"type": "n8n-nodes-base.code",
"position": [
440,
220
],
"parameters": {
"jsCode": "const today = new Date().toISOString().split(\"T\")[0];\n\nreturn items.filter(item => {\n const timestamp = item.json.Timestamp || item.json.timestamp || \"\";\n const urgency = (item.json.Urgency || item.json.urgency || \"\").toLowerCase();\n\n const rowDate = new Date(timestamp).toISOString().split(\"T\")[0];\n\n return rowDate === today && (urgency === \"high\" || urgency === \"medium\");\n});\n"
},
"typeVersion": 2
},
{
"id": "fbe2ac0e-b671-4bff-9ef1-db9abb7fc23c",
"name": "코드2",
"type": "n8n-nodes-base.code",
"position": [
660,
220
],
"parameters": {
"jsCode": "let text = `🗓️ *Daily Digest – ${new Date().toLocaleDateString()}*\\n\\n`;\n\nif (items.length === 0) {\n text += \"_No important messages today._\";\n} else {\n items.forEach((item, index) => {\n text += `*${index + 1}.* ${item.json.Summary || \"No summary\"}\\nUrgency: ${item.json.Urgency || \"Unknown\"}\\nCategory: ${item.json.Category || \"Unknown\"}\\nIntent: ${item.json.Intent || \"N/A\"}\\n\\n`;\n });\n}\n\nreturn [{ json: { text } }];\n"
},
"typeVersion": 2
},
{
"id": "1ec81105-9ac6-4167-8dc4-c5742d99764a",
"name": "메시지 보내기1",
"type": "n8n-nodes-base.slack",
"position": [
900,
220
],
"webhookId": "8d75cfb9-ac55-4745-b37d-013995518ff1",
"parameters": {
"text": "=🧠 *Inbox Assistant – Daily Digest* \n📅 *{{ $now.format(\"DD MMM YYYY\") }}* \n━━━━━━━━━━━━━━━━━━━\n\n{{ $json.text }}\n",
"select": "channel",
"channelId": {
"__rl": true,
"mode": "list",
"value": "C0934EF3CRM",
"cachedResultName": "daily-digest"
},
"otherOptions": {},
"authentication": "oAuth2"
},
"credentials": {
"slackOAuth2Api": {
"id": "Af5ru4q6Grpps5kG",
"name": "Slack account"
}
},
"typeVersion": 2.3
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "e2ed6dc8-752e-48cd-8ba9-c02d87ebfd88",
"connections": {
"c457ff9f-2b06-4b15-91e8-41fb9dff5ffa": {
"main": [
[
{
"node": "353b70b5-eaad-4636-9bed-23aec2556d47",
"type": "main",
"index": 0
}
],
[
{
"node": "e9d6f184-b2ef-41aa-9df0-e58861a93a2e",
"type": "main",
"index": 0
}
]
]
},
"ce7d28e9-9ace-4ec8-8408-0d7e6059675f": {
"main": [
[
{
"node": "c457ff9f-2b06-4b15-91e8-41fb9dff5ffa",
"type": "main",
"index": 0
}
]
]
},
"d8eeb0ff-6d67-4586-8512-4d4da995de27": {
"main": [
[
{
"node": "fbe2ac0e-b671-4bff-9ef1-db9abb7fc23c",
"type": "main",
"index": 0
}
]
]
},
"fbe2ac0e-b671-4bff-9ef1-db9abb7fc23c": {
"main": [
[
{
"node": "1ec81105-9ac6-4167-8dc4-c5742d99764a",
"type": "main",
"index": 0
}
]
]
},
"66e1eca5-d977-4ead-8138-8eab926dfbfb": {
"main": [
[
{
"node": "87e1fc81-4e18-4f7b-b3f3-d4cdc8f740a6",
"type": "main",
"index": 0
}
]
]
},
"353b70b5-eaad-4636-9bed-23aec2556d47": {
"main": [
[
{
"node": "f1109948-ab40-4f82-84f7-23fdbfc40d6b",
"type": "main",
"index": 0
}
]
]
},
"87e1fc81-4e18-4f7b-b3f3-d4cdc8f740a6": {
"main": [
[
{
"node": "ce7d28e9-9ace-4ec8-8408-0d7e6059675f",
"type": "main",
"index": 0
}
]
]
},
"1ec81105-9ac6-4167-8dc4-c5742d99764a": {
"main": [
[]
]
},
"8f2cd361-317c-4aab-8712-4ac47d337af3": {
"main": [
[
{
"node": "34161afd-e52b-4d6d-a973-9c4c63cd218c",
"type": "main",
"index": 0
}
]
]
},
"34161afd-e52b-4d6d-a973-9c4c63cd218c": {
"main": [
[
{
"node": "d8eeb0ff-6d67-4586-8512-4d4da995de27",
"type": "main",
"index": 0
}
]
]
},
"e9d6f184-b2ef-41aa-9df0-e58861a93a2e": {
"main": [
[
{
"node": "c588a35e-0230-4134-bf06-d6a0d3d5cda1",
"type": "main",
"index": 0
}
]
]
},
"f1109948-ab40-4f82-84f7-23fdbfc40d6b": {
"main": [
[
{
"node": "73ea5151-4ef3-43b7-a73e-cd5d7f736363",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 티켓 관리, AI 요약
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
능동형 스마트 고객 지원 센터
GPT-4, Gmail, Trello를 사용한 자동 이메일 지원 트라이아지
If
Code
Gmail
+
If
Code
Gmail
14 노드Marth
티켓 관리
AI 이메일 어시스턴트: ChatGPT 요약 및 Slack 요약으로 Gmail 우선 처리
Gmail, GPT-4o, Slack 긴급 알림을 사용한 자동 이메일 트라이아지
If
Code
Wait
+
If
Code
Wait
16 노드Siddhant
티켓 관리
AI 분류를 통한 Google Forms 고객 지원 응답 자동화
GPT-4o-mini AI 트라이어지를 사용한 자동화된 Google Forms 및 Gmail 고객 지원
If
Set
Code
+
If
Set
Code
22 노드Daiki Takayama
티켓 관리
AI 기반 이메일 수신함 관리자, GPT-4, Gmail 및 Slack 통합
AI 기반 이메일 수신함 관리자, GPT-4, Gmail 및 Slack 통합
If
Gmail
Slack
+
If
Gmail
Slack
22 노드Muhammad Bello
티켓 관리
AI 고객 지원 분류 및 요약 시스템
GPT-4o, Slack 및 CRM 통합을 사용한 고객 지원 자동 처리
If
Set
Code
+
If
Set
Code
32 노드NodeAlchemy
티켓 관리
내 작업流程 2
ScrapeGraphAI, Google 스프레드시트, Slack 알림을 사용하여 작업 분석 대시보드를 지원하는 시스템을 구축합니다.
If
Code
Slack
+
If
Code
Slack
15 노드vinci-king-01
티켓 관리