🌲 使用Gmail和GPT-40进行可持续发展报告审计的AI代理
中级
这是一个Other, AI领域的自动化工作流,包含 14 个节点。主要使用 If, Code, Gmail, GmailTrigger, Agent 等节点,结合人工智能技术实现智能自动化。 🌲 使用Gmail和GPT-40进行可持续发展报告审计的AI代理
前置要求
- •Google 账号和 Gmail API 凭证
- •OpenAI API Key
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"meta": {
"instanceId": "="
},
"nodes": [
{
"id": "a2d54127-d1d1-44d2-859e-b89e2e6c3b4d",
"name": "条件判断",
"type": "n8n-nodes-base.if",
"position": [
260,
260
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "=",
"operator": {
"type": "string",
"operation": "contains"
},
"leftValue": "={{ $json.subject }}",
"rightValue": "CSRD Reporting"
}
]
}
},
"typeVersion": 2.2
},
{
"id": "6a664023-ea8c-4973-b3ac-13a9e0664a58",
"name": "检查格式",
"type": "n8n-nodes-base.code",
"position": [
960,
260
],
"parameters": {
"jsCode": "const content = $input.first().json.xhtml_content;\n\n// Helper to extract tags\nfunction extractTags(tagName) {\n const regex = new RegExp(`<${tagName}[^>]*>(.*?)<\\\\/${tagName}>`, 'gs');\n let matches = [];\n let match;\n while ((match = regex.exec(content)) !== null) {\n matches.push(match[1].trim());\n }\n return matches;\n}\n\n// Basic Tests\nconst headerPresent = /<ix:header>/i.test(content);\nconst governanceTag = /<ix:nonNumeric[^>]*name=\"esrs:SustainabilityGovernance\"/i.test(content);\nconst strategyTag = /<ix:nonNumeric[^>]*name=\"esrs:StrategySustainability\"/i.test(content);\n\n// KPI Tags\nconst kpiTags = [\"esrs:GHGScope1Emissions\", \"esrs:GHGScope2Emissions\", \"esrs:GHGScope3Emissions\"];\nconst kpiMatches = kpiTags.filter(tag => content.includes(tag));\n\n// Check for empty tags\nconst emptyNonNumeric = (content.match(/<ix:nonNumeric[^>]*>\\s*<\\/ix:nonNumeric>/g) || []).length;\n\n// Check duplicate text\nconst nonNumericValues = extractTags(\"ix:nonNumeric\");\nconst duplicates = [...new Set(nonNumericValues.filter((v, i, arr) => arr.indexOf(v) !== i))];\n\n// Final Result\nreturn [\n {\n json: {\n audit_results:{\n total_nonNumeric_tags: nonNumericValues.length,\n total_kpis_found: kpiMatches.length,\n empty_disclosures: emptyNonNumeric,\n governance_check: governanceTag ? \"PASS\" : \"MISSING\",\n strategy_check: strategyTag ? \"PASS\" : \"MISSING\",\n header_check: headerPresent ? \"PASS\" : \"MISSING\",\n duplicate_disclosures: duplicates,\n }\n\n }\n }\n];\n"
},
"typeVersion": 2
},
{
"id": "a16b613e-a7c2-4079-9ff9-46c485019ca3",
"name": "AI Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
1240,
260
],
"parameters": {
"text": "=Generate an email to the sustainability team summarizing this CSRD XHTML report audit:\n\n{{JSON.stringify($json.audit_results, null, 2)}}\n\nReturn the output in the following JSON format:\n\n{\n \"subject\": \"...\",\n \"body\": \"...\"\n}",
"options": {
"systemMessage": "=You are LogiGreen CSRD Audit Bot, an ESG compliance assistant writing professional email summaries based on automated XHTML audits for CSRD compliance. Your role is to translate JSON audit results into clear, actionable summaries. Keep a neutral, helpful tone and highlight any risks or missing disclosures. Include key findings and suggest next steps if needed.\n\nWrite emails in plain English with no markdown (avoid **, #, ##, etc.).\nFormat your message with proper line breaks for readability.\nAlways sign with:\nBest regards,\nLogiGreen CSRD Audit Bot"
},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 1.8
},
{
"id": "3dcbaf39-58be-465e-9ec2-0b2a9a8c8fe3",
"name": "OpenAI 聊天模型",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1200,
420
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini"
},
"options": {}
},
"typeVersion": 1.2
},
{
"id": "6e742627-f315-4ee2-be1b-023b38103978",
"name": "结构化输出解析器",
"type": "@n8n/n8n-nodes-langchain.outputParserStructured",
"position": [
1500,
440
],
"parameters": {
"jsonSchemaExample": "{\n \"subject\": \"CSRD XHTML Report Audit – Key Findings and Next Steps\",\n \"body\": \"Content of the email\"\n}"
},
"typeVersion": 1.2
},
{
"id": "994e5b98-5bda-4a4f-a3eb-cb521de9d88a",
"name": "回复",
"type": "n8n-nodes-base.gmail",
"position": [
1620,
260
],
"webhookId": "=",
"parameters": {
"message": "={{ $json.output.body }}",
"options": {},
"emailType": "text",
"messageId": "={{ $('Gmail').item.json.id }}",
"operation": "reply"
},
"notesInFlow": true,
"typeVersion": 2.1
},
{
"id": "8a7fbdcb-2197-437e-b3ba-126c7942ba4d",
"name": "提取HTML",
"type": "n8n-nodes-base.code",
"position": [
800,
260
],
"parameters": {
"jsCode": "return [\n {\n json: {\n xhtml_content:$input.first().json.data \n }\n }\n];\n"
},
"typeVersion": 2
},
{
"id": "90f271b9-4b8b-49ef-90cc-d10d8e22a203",
"name": "便签 1",
"type": "n8n-nodes-base.stickyNote",
"position": [
20,
-140
],
"parameters": {
"color": 7,
"width": 380,
"height": 680,
"content": "### 1. 使用 Gmail 触发器的工作流触发器"
},
"typeVersion": 1
},
{
"id": "803a758c-fba4-4f48-818b-1272c4509e81",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
440,
-140
],
"parameters": {
"color": 7,
"width": 640,
"height": 680,
"content": "### 2. 提取并处理 xHTML 报告"
},
"typeVersion": 1
},
{
"id": "0b72f7d8-23ce-4243-b2e5-e3ff5c7f163e",
"name": "便签 2",
"type": "n8n-nodes-base.stickyNote",
"position": [
1120,
-140
],
"parameters": {
"color": 7,
"width": 640,
"height": 680,
"content": "### 3. AI Agent 编写并向发送者发送审计报告"
},
"typeVersion": 1
},
{
"id": "18103fec-6761-4604-872e-dab251211ba0",
"name": "从二进制数据获取HTML",
"type": "n8n-nodes-base.extractFromFile",
"position": [
660,
260
],
"parameters": {
"options": {},
"operation": "text",
"binaryPropertyName": "attachment_0"
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "5c31c49d-2324-4d08-a5b5-309925266517",
"name": "邮件触发器",
"type": "n8n-nodes-base.gmailTrigger",
"position": [
40,
260
],
"parameters": {
"simple": false,
"filters": {},
"options": {},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
}
},
"notesInFlow": true,
"typeVersion": 1.2
},
{
"id": "bacbd57d-af9b-49c8-82ae-c74aa2898fc8",
"name": "下载附件",
"type": "n8n-nodes-base.gmail",
"position": [
480,
260
],
"webhookId": "=",
"parameters": {
"simple": false,
"options": {
"downloadAttachments": true
},
"messageId": "={{ $json.id }}",
"operation": "get"
},
"notesInFlow": true,
"typeVersion": 2.1
},
{
"id": "af087293-0c3c-4c96-9523-ddb9ed238e00",
"name": "便签 3",
"type": "n8n-nodes-base.stickyNote",
"position": [
1780,
-140
],
"parameters": {
"width": 780,
"height": 540,
"content": "### 4. 需要更多详细信息吗?"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"AI Agent": {
"main": [
[
{
"node": "Reply",
"type": "main",
"index": 0
}
]
]
},
"Email Trigger": {
"main": [
[
{
"node": "If",
"type": "main",
"index": 0
}
]
]
},
"Check the format": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"Extract the HTML": {
"main": [
[
{
"node": "Check the format",
"type": "main",
"index": 0
}
]
]
},
"HTML from binary": {
"main": [
[
{
"node": "Extract the HTML",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Structured Output Parser": {
"ai_outputParser": [
[
{
"node": "AI Agent",
"type": "ai_outputParser",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 其他, 人工智能
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
🗞️ AI驱动的可持续性营销简报(使用Gmail、GPT-4o)
🗞️ AI驱动的可持续性营销简报(使用Gmail、GPT-4o)
If
Set
Code
+12
21 节点Samir Saci
人工智能
在可视化参考库中探索n8n节点
在可视化参考库中探索n8n节点
If
Ftp
Set
+93
113 节点I versus AI
其他
✈️ 使用CarbonInterface API和GPT-4o计算商务旅行二氧化碳排放量
✈️ 通过Carbon Interface API和GPT-4o计算商务旅行二氧化碳排放
Split Out
Http Request
Gmail Trigger
+6
12 节点Samir Saci
其他
🉑 使用Google Translate和GPT-4o生成语言学习Anki闪卡
🉑 使用Google Translate和GPT-4o生成语言学习Anki闪卡
If
Set
Merge
+10
21 节点Samir Saci
其他
AI 代理餐厅 [模板]
🤖 WhatsApp、Instagram 和 Messenger 的 AI 餐厅助手
If
N8n
Set
+37
239 节点Amanda Benks
其他
🤖🚚 基于GPT-4o和Open Route API的运输订单管理AI代理
🤖🚚 基于GPT-4o和Open Route API的运输订单管理AI代理
Set
Wait
Gmail
+7
26 节点Samir Saci
人工智能
工作流信息
难度等级
中级
节点数量14
分类2
节点类型9
作者
Samir Saci
@samirsaciAutomation, AI and Analytics for Supply Chain & Business Optimization Helping businesses streamline operations using n8n, AI agents, and data science to enhance efficiency and sustainability. Linkedin: www.linkedin.com/in/samir-saci
外部链接
在 n8n.io 查看 →
分享此工作流