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:优先处理您应阅读的内容",
"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 Agent",
"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": "Google Calendar MCP",
"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": "### 💡 计划触发器"
},
"typeVersion": 1
},
{
"id": "967d2796-e9ce-4dfa-90cb-948d1b573185",
"name": "便签1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1312,
256
],
"parameters": {
"width": 304,
"height": 224,
"content": "### ⚠️ 需要设置"
},
"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": "### 💡 自定义分类逻辑"
},
"typeVersion": 1
},
{
"id": "61d814b5-f734-43a1-a588-c4722a0fd60c",
"name": "便签3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-200,
-160
],
"parameters": {
"color": 5,
"height": 352,
"content": "### 💡 添加更多标签"
},
"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": {
"Switch": {
"main": [
[
{
"node": "Add label \"Action\" to email",
"type": "main",
"index": 0
}
],
[
{
"node": "Add label \"Informational\" to email",
"type": "main",
"index": 0
}
],
[
{
"node": "Add label \"Receipt\" to email",
"type": "main",
"index": 0
}
],
[
{
"node": "Delete email",
"type": "main",
"index": 0
}
]
]
},
"AI Agent": {
"main": [
[
{
"node": "Switch",
"type": "main",
"index": 0
}
]
]
},
"Edit Fields": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"Delete email": {
"main": [
[]
]
},
"Schedule Trigger": {
"main": [
[
{
"node": "Get All Unread Messages",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"OpenAI Fall Back Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 1
}
]
]
},
"Get All Unread Messages": {
"main": [
[
{
"node": "Edit Fields",
"type": "main",
"index": 0
}
]
]
},
"Structured Output Parser": {
"ai_outputParser": [
[
{
"node": "AI Agent",
"type": "ai_outputParser",
"index": 0
}
]
]
},
"Add label \"Action\" to email": {
"main": [
[
{
"node": "Mark email as read",
"type": "main",
"index": 0
}
]
]
},
"Add label \"Receipt\" to email": {
"main": [
[
{
"node": "Mark email as read",
"type": "main",
"index": 0
}
]
]
},
"Add label \"Informational\" to email": {
"main": [
[
{
"node": "Mark email as read",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
高级 - 个人效率, AI 摘要总结
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
AI 自动保存 Gmail 收据
AI自动保存Gmail收据到Google表格和Google云端硬盘
Set
Gmail
Merge
+8
14 节点Matt Chong
发票处理
我的工作流
整理 Gmail:使用 GPT-4 分类归档非活跃邮件
If
Set
Gmail
+7
13 节点Matt Chong | n8n Creator
AI 摘要总结
发送定时n8n发布说明通知到Gmail
基于AI的n8n发布说明摘要通知(通过Gmail与GPT-5-Mini)
Set
Code
Html
+7
16 节点Jeff Huera
个人效率
发票提醒:Gmail到Tasks
使用Gmail和Google Tasks自动检测发票并创建提醒
If
Gmail
Google Tasks
+6
13 节点Matt Chong
发票处理
AI Gmail外出自动回复器
基于GPT-4o-mini的智能Gmail外出自动回复
If
Set
Gmail
+6
15 节点Matt Chong | n8n Creator
多模态 AI
特殊追踪器共享
从LINE消息自动追踪支出,使用GPT-4和Google表格
Set
Merge
Switch
+8
25 节点Catalina Kuo
个人效率