使用OpenAI和Gmail的每日积极新闻摘要
中级
这是一个Personal Productivity, AI Summarization领域的自动化工作流,包含 9 个节点。主要使用 If, Cron, Gmail, OpenAi, RssFeed 等节点。 使用OpenAI和Gmail的每日积极新闻摘要
前置要求
- •Google 账号和 Gmail API 凭证
- •OpenAI API Key
工作流预览
可视化展示节点连接关系,支持缩放和平移
无法加载工作流预览
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"nodes": [
{
"name": "每日早晨触发器(7点)",
"type": "n8n-nodes-base.cron",
"notes": {
"text": "### 1. Daily Morning Trigger (7 AM)\n\nThis `Cron` node triggers the workflow automatically every **day at 7:00 AM** (based on your n8n server's local time zone).\n\n**To change the schedule:** Adjust the 'Hour' and 'Minute' fields to your preferred time for receiving the news digest.",
"position": "right"
},
"position": [
240,
300
],
"parameters": {
"mode": "everyDay",
"value": {
"hour": [
7
],
"minute": [
0
]
},
"options": {}
},
"typeVersion": 1
},
{
"name": "获取积极新闻(RSS)",
"type": "n8n-nodes-base.rssFeed",
"notes": {
"text": "### 2. Fetch Positive News (RSS)\n\nThis `RSS Feed` node fetches the latest articles from the Good News Network, a reliable source for positive stories.\n\n**Setup:**\n1. **URL:** Pre-filled with `https://www.goodnewsnetwork.org/feed/`.\n2. **To add more sources:** You can add more `RSS Feed` nodes in parallel and then use an `Item Lists` node set to 'Merge Items' to combine their outputs before the 'Prepare for AI' node.",
"position": "right"
},
"position": [
480,
300
],
"parameters": {
"url": "https://www.goodnewsnetwork.org/feed/",
"options": {}
},
"typeVersion": 1
},
{
"name": "AI准备工作",
"type": "n8n-nodes-base.function",
"notes": {
"text": "### 3. Prepare for AI\n\nThis `Function` node formats the news articles' titles and descriptions into a single `articleText` field, which is easier for the AI to process.\n\nIt also preserves the original title, description, and link for the final summary.\n\n**No configuration needed**; it automatically processes the RSS feed items.",
"position": "right"
},
"position": [
720,
300
],
"parameters": {
"options": {},
"function": "const preparedItems = [];\n\nfor (const item of items) {\n const title = item.json.title || 'No Title';\n const description = item.json.contentSnippet || item.json.description || 'No Description';\n const link = item.json.link || '#';\n\n preparedItems.push({\n json: {\n originalTitle: title,\n originalDescription: description,\n originalLink: link,\n articleText: `Title: ${title}\\nDescription: ${description}`\n }\n });\n}\n\nreturn preparedItems;"
},
"typeVersion": 1
},
{
"name": "AI:总结积极新闻",
"type": "n8n-nodes-base.openAi",
"notes": {
"text": "### 4. AI: Summarize Positive News\n\nThis `OpenAI` node is the core of the 'positive news' filtering and summarization.\n\n**Setup:**\n1. **OpenAI Credential:** Click 'Credentials' and select 'New Credential'. Provide your OpenAI API Key (starts with `sk-`). Save it.\n2. **Model:** `gpt-3.5-turbo` is pre-selected. For higher quality summaries and better sentiment discernment, consider `gpt-4o` (may incur higher costs).\n3. **Prompts:** The 'System' prompt guides the AI to only summarize positive/neutral-to-positive articles and output 'SKIP' otherwise.\n\n**Output:** The AI's summary or the word 'SKIP'.",
"position": "right"
},
"position": [
960,
300
],
"parameters": {
"model": "gpt-3.5-turbo",
"options": {},
"messages": [
{
"role": "system",
"content": "You are a news summarizer focused only on positive and uplifting news. Read the provided article text. If it is clearly positive or neutral-to-positive, summarize its core message in 2-3 concise sentences, focusing on the positive aspects. If it is negative, neutral, or not news (e.g., ads), output the single word 'SKIP'."
},
{
"role": "user",
"content": "Article:\n{{ $json.articleText }}"
}
]
},
"credentials": {
"openAiApi": {
"id": "YOUR_OPENAI_CREDENTIAL_ID",
"resolve": false
}
},
"typeVersion": 1
},
{
"name": "筛选并准备积极摘要",
"type": "n8n-nodes-base.function",
"notes": {
"text": "### 5. Filter & Prepare Positive Summaries\n\nThis `Function` node filters out any items where the AI responded with 'SKIP' (meaning the news was not positive enough).\n\nFor the remaining items, it prepares a clean object containing the original title, link, and the AI-generated positive summary.\n\n**No configuration needed**; it automatically processes the AI output.",
"position": "right"
},
"position": [
1200,
300
],
"parameters": {
"options": {},
"function": "const positiveSummaries = [];\n\nfor (const item of items) {\n const aiResponse = item.json.choices[0].message.content.trim();\n\n if (aiResponse.toUpperCase() !== 'SKIP') {\n positiveSummaries.push({\n json: {\n originalTitle: item.json.originalTitle,\n originalLink: item.json.originalLink,\n summary: aiResponse\n }\n });\n }\n}\n\nreturn positiveSummaries;"
},
"typeVersion": 1
},
{
"name": "如果找到积极新闻",
"type": "n8n-nodes-base.if",
"notes": {
"text": "### 6. If Positive News Found\n\nThis `If` node checks if any positive news articles were actually found and summarized after filtering.\n\n* **'True' branch:** If positive news exists, the workflow proceeds to format and send the email.\n* **'False' branch:** If no positive news was found for the day, the workflow will still send an email, but with a message indicating no positive news was found (handled by the 'Format No Positive News Message' node).\n\n**No configuration needed**; it checks if the array of items is not empty.",
"position": "right"
},
"position": [
1440,
300
],
"parameters": {
"conditions": [
{
"value1": "={{ $json.length }}",
"value2": "0",
"operation": "notEqual"
}
]
},
"typeVersion": 1
},
{
"name": "格式化积极新闻邮件",
"type": "n8n-nodes-base.function",
"notes": {
"text": "### 7. Format Positive News Email\n\nThis `Function` node compiles all the positive news summaries into a single, formatted email body.\n\n**Customization:**\n* You can customize the greeting, closing, and the way each news item is presented.\n* The email body is formatted using Markdown for bolding and line breaks, which Gmail supports.\n\n**No configuration needed** if your previous node's output matches expectations.",
"position": "right"
},
"position": [
1680,
220
],
"parameters": {
"options": {},
"function": "let emailBody = \"\";\n\nemailBody += \"Good morning! Here's your daily dose of positive news:\\n\\n\";\n\nfor (const item of items) {\n emailBody += `**${item.json.originalTitle}**\\n` +\n `${item.json.summary}\\n` +\n `Read more: ${item.json.originalLink}\\n\\n---\\n\\n`;\n}\n\nemailBody += \"Have a wonderful day!\\n\\nThis digest was brought to you by n8n.\";\n\nreturn [{ json: { emailSubject: \"☀️ Your Daily Positive News Digest!\", emailBody: emailBody } }];"
},
"typeVersion": 1
},
{
"name": "格式化无积极新闻消息",
"type": "n8n-nodes-base.function",
"notes": {
"text": "### 7. Format No Positive News Message\n\nThis `Function` node creates a fallback message for your email if the workflow doesn't find any positive news articles after filtering.\n\n**No configuration needed**; it provides a default message when there's no positive news.",
"position": "right"
},
"position": [
1680,
380
],
"parameters": {
"options": {},
"function": "return [{ json: { emailSubject: \"☁️ Daily Positive News Digest: No Positive News Today\", emailBody: \"Good morning!\\n\\nUnfortunately, I couldn't find any predominantly positive news articles for your digest today.\\n\\nStay positive, and check back tomorrow!\\n\\nThis digest was brought to you by n8n.\" } }];"
},
"typeVersion": 1
},
{
"name": "发送每日摘要邮件",
"type": "n8n-nodes-base.gmail",
"notes": {
"text": "### 8. Send Daily Digest Email\n\nThis `Gmail` node sends the final email digest (either with positive news or the 'no news found' message) to your mailbox.\n\n**Setup:**\n1. **Gmail Credential:** Select your Gmail API credential.\n2. **From Email:** Enter your Gmail address (must match the authenticated account).\n3. **To Email:** **IMPORTANT: Change `YOUR_RECIPIENT_EMAIL@example.com` to your actual email address!**\n4. **Subject & Text:** These fields pull the formatted subject and body from the previous 'Format' nodes.\n\n**Test this node by running the workflow** to ensure you receive the email.",
"position": "right"
},
"position": [
1920,
300
],
"parameters": {
"text": "={{ $json.emailBody }}",
"options": {},
"subject": "={{ $json.emailSubject }}",
"toEmail": "YOUR_RECIPIENT_EMAIL@example.com",
"fromEmail": "YOUR_GMAIL_EMAIL@gmail.com"
},
"credentials": {
"gmailApi": {
"id": "YOUR_GMAIL_CREDENTIAL_ID",
"resolve": false
}
},
"typeVersion": 2
}
],
"pinData": {},
"version": 1,
"connections": {
"Prepare for AI": {
"main": [
[
{
"node": "AI: Summarize Positive News",
"type": "main"
}
]
]
},
"If Positive News Found": {
"main": [
[
{
"node": "Format Positive News Email",
"type": "main"
}
],
[
{
"node": "Format No Positive News Message",
"type": "main"
}
]
]
},
"Fetch Positive News (RSS)": {
"main": [
[
{
"node": "Prepare for AI",
"type": "main"
}
]
]
},
"Format Positive News Email": {
"main": [
[
{
"node": "Send Daily Digest Email",
"type": "main"
}
]
]
},
"AI: Summarize Positive News": {
"main": [
[
{
"node": "Filter & Prepare Positive Summaries",
"type": "main"
}
]
]
},
"Daily Morning Trigger (7 AM)": {
"main": [
[
{
"node": "Fetch Positive News (RSS)",
"type": "main"
}
]
]
},
"Format No Positive News Message": {
"main": [
[
{
"node": "Send Daily Digest Email",
"type": "main"
}
]
]
},
"Filter & Prepare Positive Summaries": {
"main": [
[
{
"node": "If Positive News Found",
"type": "main"
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 个人效率, AI 摘要总结
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
使用Gmail和GPT摘要自动发送每日邮件摘要
使用Gmail和GPT摘要自动发送每日邮件摘要,每天下午发送
Cron
Gmail
Open Ai
+1
6 节点Piotr Sobolewski
个人效率
企业在线形象监测器
使用AI情感分析和多平台追踪的每日企业在线形象监测
Set
Cron
Gmail
+7
17 节点Piotr Sobolewski
市场调研
自动化多平台游戏优惠追踪
使用 Deku Deals 和 Gmail 提醒自动追踪多平台游戏优惠
If
Cron
Gmail
+5
11 节点Piotr Sobolewski
个人效率
自动化网页爬虫:细分职位/产品监控与Telegram警报
自动化网页爬虫:细分职位/产品监控与Telegram警报
If
Cron
Function
+3
6 节点Piotr Sobolewski
市场调研
将 Google 日历的每周会议安排预览发送到 Gmail
将 Google 日历的每周会议安排预览发送到 Gmail
Cron
Gmail
Function
+1
5 节点Piotr Sobolewski
个人效率
自动财务追踪器:同步收据、预测现金流并获取月度报告
使用Gmail、Google Sheets和GPT-4o月度报告的自动化财务追踪器
If
Set
Cron
+6
17 节点Shelly-Ann Davy
发票处理
工作流信息
难度等级
中级
节点数量9
分类2
节点类型6
作者
Piotr Sobolewski
@piotrsobolewskiAI PhD with 7 years experience as a game dev CEO, currently teaching, helping others and building something new.
外部链接
在 n8n.io 查看 →
分享此工作流