Skip to main content

Latest tailored economic news for business πŸŒπŸ’Όβœ¨

Workflow preview

Workflow preview
100%
Latest tailored economic news for business πŸŒπŸ’Όβœ¨ preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

What this workflow does Every morning β†’ fetch 3 French economy RSS feeds β†’ keep fresh items β†’ AI rewrites into short summaries β†’ send a nice HTML email newsletter. Flow (high level) 1. Trig...

Best for

  • AI Summarization automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.rssfeedread, n8n-nodes-base.if, n8n-nodes-base.merge, n8n-nodes-base.sort, n8n-nodes-base.limit, @n8n/n8n-nodes-langchain.agent, @n8n/n8n-nodes-langchain.lmchatgooglegemini, @n8n/n8n-nodes-langchain.outputparserstructured

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Louis.

Original n8n.io source

1.1 Workflow description

Title
Latest tailored economic news for business πŸŒπŸ’Όβœ¨
Workflow name
Latest tailored economic news for business πŸŒπŸ’Όβœ¨

πŸ“¬ What this workflow does

Every morning β†’ fetch 3 French economy RSS feeds β†’ keep fresh items β†’ AI rewrites into short summaries β†’ send a nice HTML email newsletter.


πŸ”„ Flow (high level)

  1. ⏰ Trigger at 07:00
  2. πŸ“° Fetch RSS (Le Monde, Usine Nouvelle, Le Figaro)
  3. β›” Filter β†’ keep only recent items
  4. πŸ”’ Sort newest first
  5. βœ‚οΈ Limit 2 per source
  6. βž• Merge
  7. πŸ€– AI summary (title + paragraph)
  8. 🏷 Normalize fields (title, source, link…)
  9. πŸ“¦ Aggregate arrays
  10. πŸ“§ Send via Outlook (HTML template)

🧩 Node notes

  • Trigger β†’ 07:00 daily (check timezone).
  • RSS Read β†’ feeds OK, but UsineNouvelle is http (redirects fine).
  • If nodes β†’ ❗ currently after $today β†’ keeps only future dates.
    • Fix:
      • For today only: after $today.startOf('day')
      • For last 24h: after $now.minus({ hours: 24 })
  • Sort + Limit β†’ newest 2 per feed.
  • Merge β†’ combine up to 6 items.
  • AI agent β†’ prompt uses <article> … needs closing </article> βœ…
  • Edit Fields β†’ maps source domains β†’ nice labels (β€œLe Monde” etc).
  • Aggregate β†’ arrays for email template.
  • Outlook email β†’ HTML newsletter (mobile-friendly).

⚑ Quick wins

  • πŸ•’ Fix the date filter logic (today/24h).
  • πŸ“ Fix closing tag in AI prompt (</article>).
  • 🌍 Add User-Agent header in RSS nodes (avoid 403).
  • πŸ” Remove duplicates on link.
  • ⏳ Mind the server timezone vs your audience.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - RSS Read

Type / Role
n8n-nodes-base.rssFeedRead - rssFeedRead
Config choices
Version 1.2

Block 2 - RSS Read1

Type / Role
n8n-nodes-base.rssFeedRead - rssFeedRead
Config choices
Version 1.2

Block 3 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 4 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 5 - If1

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 6 - Sort

Type / Role
n8n-nodes-base.sort - sort
Config choices
Version 1

Block 7 - Sort1

Type / Role
n8n-nodes-base.sort - sort
Config choices
Version 1

Block 8 - Limit

Type / Role
n8n-nodes-base.limit - limit
Config choices
Version 1

Block 9 - Limit1

Type / Role
n8n-nodes-base.limit - limit
Config choices
Version 1

Block 10 - RSS Read2

Type / Role
n8n-nodes-base.rssFeedRead - rssFeedRead
Config choices
Version 1.2

Block 11 - If2

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 12 - Sort2

Type / Role
n8n-nodes-base.sort - sort
Config choices
Version 1

Block 13 - Limit2

Type / Role
n8n-nodes-base.limit - limit
Config choices
Version 1

Block 14 - RΓ©daction

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 2.2

Block 15 - Google Gemini Chat Model2

Type / Role
@n8n/n8n-nodes-langchain.lmChatGoogleGemini - lmChatGoogleGemini
Config choices
Version 1

Block 16 - Structured Output Parser1

Type / Role
@n8n/n8n-nodes-langchain.outputParserStructured - outputParserStructured
Config choices
Version 1.3

Block 17 - Google Gemini Chat Model3

Type / Role
@n8n/n8n-nodes-langchain.lmChatGoogleGemini - lmChatGoogleGemini
Config choices
Version 1

Block 18 - Edit Fields3

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 19 - Send the summary by e-mail1

Type / Role
n8n-nodes-base.microsoftOutlook - microsoftOutlook
Config choices
Version 2

Block 20 - Aggregate1

Type / Role
n8n-nodes-base.aggregate - aggregate
Config choices
Version 1

Block 21 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Showing the first 24 of 29 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Latest tailored economic news for business πŸŒπŸ’Όβœ¨
Complexity advanced
Nodes 29
Categories AI Summarization, Multimodal AI
Author Louis
Published 21 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7702/7702.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Latest tailored economic news for business πŸŒπŸ’Όβœ¨ do?

What this workflow does Every morning β†’ fetch 3 French economy RSS feeds β†’ keep fresh items β†’ AI rewrites into short summaries β†’ send a nice HTML email newsletter. Flow (high level) 1. Trig...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your AI Summarization, Multimodal AI use case.