Google 양식 일일 요약을 이메일로 발송
중급
이것은Personal Productivity, Multimodal AI분야의자동화 워크플로우로, 6개의 노드를 포함합니다.주로 Code, Gmail, GoogleSheetsTrigger 등의 노드를 사용하며. 매일 Google 양식 제출 내용을 통합하여 Gmail 요약 생성
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •Google Sheets API 인증 정보
사용된 노드 (6)
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "4PkzGnVzhzmFcQas",
"meta": {
"instanceId": "b7b2db9d6a461f902b25d685e4550cab3c88fcbb3254a8654e06246b67e4ff5c",
"templateCredsSetupCompleted": true
},
"name": "Google Form Daily Recap to Email",
"tags": [
{
"id": "5iQR5Cw05Bzz7Aqt",
"name": "Google",
"createdAt": "2025-08-02T17:36:32.751Z",
"updatedAt": "2025-08-02T17:36:32.751Z"
},
{
"id": "PlBq4GrfRsEhR6mN",
"name": "google form",
"createdAt": "2025-08-14T09:57:38.641Z",
"updatedAt": "2025-08-14T09:57:38.641Z"
},
{
"id": "S94PaeZJiPKn5Ei9",
"name": "gmail",
"createdAt": "2025-08-14T09:57:18.678Z",
"updatedAt": "2025-08-14T09:57:18.678Z"
},
{
"id": "Unbn35P90TtJuAQC",
"name": "email",
"createdAt": "2025-08-14T09:57:13.394Z",
"updatedAt": "2025-08-14T09:57:13.394Z"
},
{
"id": "h2TBJOs7feXDIfbL",
"name": "google sheet",
"createdAt": "2025-08-14T09:57:22.041Z",
"updatedAt": "2025-08-14T09:57:22.041Z"
},
{
"id": "rYuINsb3Y1XjrgNv",
"name": "Productivity",
"createdAt": "2025-08-02T17:36:49.812Z",
"updatedAt": "2025-08-02T17:36:49.812Z"
}
],
"nodes": [
{
"id": "1c6d9187-1442-4098-a300-11b22e1183c2",
"name": "이메일 요약 작성",
"type": "n8n-nodes-base.gmail",
"position": [
1040,
0
],
"webhookId": "d376e469-4595-4972-9d58-ef4bbb1e7982",
"parameters": {
"sendTo": "email",
"message": "={{$json.html}}",
"options": {},
"subject": "The requests you received today"
},
"credentials": {
"gmailOAuth2": {
"id": "88G2Fa5bxsnrjAYu",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "b619b991-d0cd-41be-84f8-3e2a0db82fea",
"name": "새 행 트리거 데이터",
"type": "n8n-nodes-base.googleSheetsTrigger",
"position": [
416,
0
],
"parameters": {
"event": "rowAdded",
"options": {
"dataLocationOnSheet": {
"values": {
"range": "A1:Z1000",
"rangeDefinition": "specifyRangeA1"
}
}
},
"pollTimes": {
"item": [
{
"hour": 17
}
]
},
"sheetName": {
"__rl": true,
"mode": "id",
"value": "id"
},
"documentId": {
"__rl": true,
"mode": "url",
"value": "url"
}
},
"credentials": {
"googleSheetsTriggerOAuth2Api": {
"id": "3Ibd0h6fDr3TCJ1v",
"name": "Google Sheets Trigger account"
}
},
"notesInFlow": false,
"typeVersion": 1
},
{
"id": "0ca891c0-477f-4f23-918e-73b016f2c3b7",
"name": "스티키 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
80,
-304
],
"parameters": {
"color": 3,
"content": "## Required\n\n\n- Google account\n- Google Form\n- Google Sheet linked to the form"
},
"typeVersion": 1
},
{
"id": "25843c2b-29e3-4bcd-8922-f25f8f903200",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
352,
-304
],
"parameters": {
"color": 2,
"width": 416,
"height": 848,
"content": "## 1.Workflow trigger et data gathering\n\nThe workflow is **triggered automatically** everyday at 5pm. \n\nHow to setup:\n- Set up your Google form and link it to a google sheet\n- link the google sheet to this workflow"
},
"typeVersion": 1
},
{
"id": "804f4951-61b5-4fa1-a959-66a92ce525b5",
"name": "스티키 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
784,
-304
],
"parameters": {
"color": 4,
"width": 560,
"height": 848,
"content": "## 2. Send the email\n\nThe code node, will create the message and gather all the informations wanted about the row added during the day and will list them (row newly added). So a full sum um will be sent in one message only.\n\n\nHow to setup:\n- Connect with your Gmail account credentials."
},
"typeVersion": 1
},
{
"id": "d889b4e6-7b66-4272-92a1-406771c5803b",
"name": "이메일 생성",
"type": "n8n-nodes-base.code",
"position": [
832,
0
],
"parameters": {
"jsCode": "const rows = $input.all().map(i => i.json);\n\n// helper: get eh first existing key\nconst pick = (obj, keys) => {\n for (const k of keys) if (k in obj && obj[k] != null && obj[k] !== '') return obj[k];\n return undefined;\n};\n\nconst categories = {};\nfor (const row of rows) {\n const category = pick(row, ['Catégorie', 'Category']) || 'Non classé';\n const question = pick(row, ['Question', 'Please write your request', 'Please write your re', 'Request', 'Message']) || '(no question)';\n const from = pick(row, ['Nom', 'Name', 'Full Name', 'Adresse e-mail', 'Email Address', 'Email']) || 'Anonymous';\n\n if (!categories[category]) categories[category] = [];\n categories[category].push({ question, from });\n}\n\nlet html = `<h2>📬 Questions of the day received (${rows.length})</h2>`;\nfor (const [cat, items] of Object.entries(categories)) {\n html += `<h3>${cat} (${items.length})</h3><ul>`;\n for (const it of items) {\n html += `<li><strong>${it.from}</strong><br>${it.question}</li>`;\n }\n html += `</ul>`;\n}\n\nreturn [{ json: { html, count: rows.length } }];\n"
},
"typeVersion": 2
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "0eeda259-9205-4ec9-8dcb-f39e515f579a",
"connections": {
"d889b4e6-7b66-4272-92a1-406771c5803b": {
"main": [
[
{
"node": "1c6d9187-1442-4098-a300-11b22e1183c2",
"type": "main",
"index": 0
}
]
]
},
"b619b991-d0cd-41be-84f8-3e2a0db82fea": {
"main": [
[
{
"node": "d889b4e6-7b66-4272-92a1-406771c5803b",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 개인 생산성, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
회의록 자동화 (Google Sheets + Gmail)
Google Sheets 및 Gmail을 사용한 자동화된 회의록 배포
Code
Gmail
Google Sheets
+
Code
Gmail
Google Sheets
7 노드Yassin Zehar
개인 생산성
Google 양식 즉각 알림
Google 양식 제출 시 즉시 Gmail 알림
Code
Gmail
Google Sheets Trigger
+
Code
Gmail
Google Sheets Trigger
6 노드Yassin Zehar
티켓 관리
Google Forms → Jira 문제 생성기
Google 양식에서 Jira 작업지 생성, 스프레드시트 업데이트 및 이메일 알림 포함
Code
Jira
Gmail
+
Code
Jira
Gmail
9 노드Yassin Zehar
기타
Gmail을 위한 Jira 자동 스프린트 리포트
통해Gmail向利益相关者보내기Jira자동화冲刺보고서
Set
Code
Jira
+
Set
Code
Jira
11 노드Yassin Zehar
콘텐츠 제작
Qwen3-VL-8B-Thinking 여행 계획기
Skyscanner, Booking.com 및 Gmail 기반 AI 최적화 여행 일정 생성기
Set
Code
Gmail
+
Set
Code
Gmail
18 노드Cheng Siong Chin
개인 생산성
개인 수신함 자동 분류
Gmail, GPT-4o-mini 및 Notion을 사용한 이메일 분류 및 요약 자동화
Set
Code
Gmail
+
Set
Code
Gmail
18 노드Rahul Joshi
개인 생산성
워크플로우 정보
난이도
중급
노드 수6
카테고리2
노드 유형4
저자
Yassin Zehar
@yassinzeharDigital & IT Project Manager | Data-oriented | Agile certified (PSM I, PSPO I) | Paris
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유