Gmail 받은편지함 이메일 자동 아카이빙
중급
이것은Other분야의자동화 워크플로우로, 10개의 노드를 포함합니다.주로 Gmail, Filter, ItemLists, ScheduleTrigger 등의 노드를 사용하며. Gmail 받은편지함 이메일 자동 아카이빙
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"nodes": [
{
"id": "b1afd02d-6edf-4540-bf32-09d87cb8a27b",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
320,
220
],
"parameters": {
"color": 5,
"width": 379,
"height": 80,
"content": "### 👨🎤 Setup\n1. Add your Gmail creds"
},
"typeVersion": 1
},
{
"id": "3481e6c3-7706-4c7f-8ca6-c96f76d82021",
"name": "매일 업무일 자정에",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
400,
340
],
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 0 * * 1-5"
}
]
}
},
"typeVersion": 1
},
{
"id": "3c74e4fd-e919-4acb-8092-658f2e71513b",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
380,
520
],
"parameters": {
"color": 7,
"width": 202,
"height": 100,
"content": "👆 Set your schedule. I use this for work emails. For personal emails, I run this daily."
},
"typeVersion": 1
},
{
"id": "de421702-d012-4ea1-826e-1a4756ff4856",
"name": "지난 하루 동안의 모든 이메일 가져오기",
"type": "n8n-nodes-base.gmail",
"position": [
620,
340
],
"parameters": {
"filters": {
"q": "label:inbox",
"receivedBefore": "={{ $now.minus({days: 1}) }}"
},
"resource": "thread",
"returnAll": true
},
"credentials": {
"gmailOAuth2": {
"id": "8",
"name": "Work Gmail account"
}
},
"retryOnFail": true,
"typeVersion": 2
},
{
"id": "ef43b756-5f9c-4c8d-830a-8ccb71562618",
"name": "각 이메일의 스레드 가져오기",
"type": "n8n-nodes-base.gmail",
"position": [
840,
340
],
"parameters": {
"options": {},
"resource": "thread",
"threadId": "={{ $json.id }}",
"operation": "get"
},
"credentials": {
"gmailOAuth2": {
"id": "8",
"name": "Work Gmail account"
}
},
"retryOnFail": true,
"typeVersion": 2
},
{
"id": "bfc3b7e1-651a-4eb5-8882-b21d120d982b",
"name": "수신함에서 별표 표시된 이메일만 유지",
"type": "n8n-nodes-base.filter",
"position": [
1060,
340
],
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{ JSON.stringify($json.messages).includes('STARRED') }}"
}
]
}
},
"typeVersion": 1
},
{
"id": "3d8145dc-577d-4e9b-83a7-fdf06afa1b96",
"name": "스레드 내 각 메시지에 대해",
"type": "n8n-nodes-base.itemLists",
"position": [
1480,
520
],
"parameters": {
"options": {},
"fieldToSplitOut": "messages"
},
"typeVersion": 2
},
{
"id": "1a9083a8-ffd2-403e-bf53-9b9eee87ff5b",
"name": "메시지 아카이브(수신함에서 제거)",
"type": "n8n-nodes-base.gmail",
"position": [
1700,
520
],
"parameters": {
"labelIds": "=INBOX",
"messageId": "={{ $json.id }}",
"operation": "removeLabels"
},
"credentials": {
"gmailOAuth2": {
"id": "8",
"name": "Work Gmail account"
}
},
"retryOnFail": true,
"typeVersion": 2
},
{
"id": "c51240d0-88cb-461b-82ba-929a2d8a9dde",
"name": "스레드 아카이브(수신함에서 제거)",
"type": "n8n-nodes-base.gmail",
"position": [
1340,
300
],
"parameters": {
"labelIds": "=INBOX",
"resource": "thread",
"threadId": "={{ $json.id }}",
"operation": "removeLabels"
},
"credentials": {
"gmailOAuth2": {
"id": "8",
"name": "Work Gmail account"
}
},
"retryOnFail": true,
"typeVersion": 2
},
{
"id": "3ca7074f-c912-456c-92e4-08cac8833471",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
1060,
520
],
"parameters": {
"color": 7,
"width": 202,
"height": 100,
"content": "⭐ Keep starred emails in inbox.. Archive everything else!"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"3481e6c3-7706-4c7f-8ca6-c96f76d82021": {
"main": [
[
{
"node": "de421702-d012-4ea1-826e-1a4756ff4856",
"type": "main",
"index": 0
}
]
]
},
"ef43b756-5f9c-4c8d-830a-8ccb71562618": {
"main": [
[
{
"node": "bfc3b7e1-651a-4eb5-8882-b21d120d982b",
"type": "main",
"index": 0
}
]
]
},
"de421702-d012-4ea1-826e-1a4756ff4856": {
"main": [
[
{
"node": "ef43b756-5f9c-4c8d-830a-8ccb71562618",
"type": "main",
"index": 0
}
]
]
},
"3d8145dc-577d-4e9b-83a7-fdf06afa1b96": {
"main": [
[
{
"node": "1a9083a8-ffd2-403e-bf53-9b9eee87ff5b",
"type": "main",
"index": 0
}
]
]
},
"bfc3b7e1-651a-4eb5-8882-b21d120d982b": {
"main": [
[
{
"node": "c51240d0-88cb-461b-82ba-929a2d8a9dde",
"type": "main",
"index": 0
},
{
"node": "3d8145dc-577d-4e9b-83a7-fdf06afa1b96",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 기타
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
Todoist에서 자동으로 매일 할 일 목록을 생성합니다.
Todoist에서 자동으로 매일 할 일 목록을 생성합니다.
If
Code
Filter
+
If
Code
Filter
13 노드Mutasem
기타
Notion 데이터베이스에서 직접 n8n 워크플로우를 자동으로 기록합니다.
Notion 데이터베이스에서 직접 n8n 워크플로우를 자동으로 기록합니다.
If
N8n
Set
+
If
N8n
Set
10 노드Mutasem
기타
Gmail, Google Sheets 및 AI를 사용한 이메일 자동 분류
Gmail, Google Sheets, AI를 활용한 자동 이메일 분류
Set
Gmail
Filter
+
Set
Gmail
Filter
17 노드Milan Vasarhelyi
기타
시각화 참조 라이브러리에서 n8n 노드를 탐색
可视化 참조 라이브러리에서 n8n 노드를 탐색
If
Ftp
Set
+
If
Ftp
Set
113 노드I versus AI
기타
귀하의 이메일에 시각화 요약 및 지식 그래프 통찰력 생성
이메일에 시각화 요약과 지식 그래프 통찰력 생성
If
Set
Code
+
If
Set
Code
38 노드InfraNodus
기타
Google 연락처와 Notion 양방향 동기화
双向동기화 Google 通讯录与 Notion
If
Set
Merge
+
If
Set
Merge
82 노드Solomon
기타