🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

RSS to Email, curated newsletters with Google Gemini

Lisa Granqvist Partner Workflow Automation Expert

Your RSS reader starts with good intentions, then turns into a scroll of half-relevant headlines you never open. You copy links into notes, promise you’ll “read later,” and somehow still miss the one story you actually needed for a meeting.

This hits marketing leads hardest because you need angles fast. Founders feel it when competitor moves slip by. And if you run an agency, clients expect “what’s happening” without paying for your doomscrolling. A Gemini newsletter automation fixes that by emailing you a curated digest that only includes what you care about.

Below is how this workflow pulls from your RSS feeds, uses Google Gemini to pick the best items, and delivers a clean HTML newsletter every morning.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: RSS to Email, curated newsletters with Google Gemini

The Challenge: Staying Informed Without Drowning in Feeds

RSS is supposed to be the calm alternative to social media. In practice, it becomes another inbox. You subscribe to “just a few” feeds, then add competitors, then add tool updates, then add newsletters you heard about on a podcast. Suddenly you are checking 40 sources, skimming titles, opening five tabs, and still missing key updates because you’re rushing. The worst part is the mental load: deciding what matters takes longer than reading what matters. And on busy weeks, you stop checking entirely.

It adds up fast. Here’s where it breaks down in real teams and small businesses.

  • You spend about 30 minutes a day sorting headlines, and it still feels incomplete.
  • Competitor or industry updates get buried under “nice to know” posts, so you react late.
  • Manual curation is inconsistent because it depends on your mood, time, and attention.
  • Forwarding links to teammates turns into messy threads with no shared structure.

The Fix: Daily RSS-to-Email Curation with Gemini

This workflow turns your RSS feeds into a newsletter you’ll actually read. Every day at a time you choose (default is 9:00 AM), it pulls the latest items from two sets of sources, like “Tech” and “Tools.” It then processes those items in batches so you don’t run into rate limits or timeouts. After the feeds are combined, the workflow converts the full list into a file, passes it to Google Gemini, and asks Gemini to pick the top items based on keywords you define. Finally, it formats the results into a clean HTML email, complete with summaries and images, then sends it straight to your inbox via SMTP.

The workflow starts with a scheduled trigger, then reads RSS items from your lists. Gemini curates the best 10–15 items per category based on your interests. The output is a single email that looks like a curated newsletter, not a raw feed dump.

What Changes: Before vs. After

Real-World Impact

Say you track two categories with 10 RSS feeds each. If you manually check just 20 feeds and spend maybe 2 minutes per feed to skim headlines, that’s about 40 minutes a day, and you still have to decide what to read. With this workflow, you spend about 5 minutes once setting keywords and feeds, then your daily effort is basically zero: it runs at 9:00 AM, Gemini curates the top 10–15 items per category, and the email arrives ready to scan in a few minutes.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Gemini API for AI-based curation and summaries
  • SMTP email account to send the newsletter reliably
  • Gemini API key (get it from Google AI Studio/Google Cloud)

Skill level: Beginner. You’ll paste RSS URLs, add credentials, and adjust a few fields.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

A daily schedule kicks it off. At your chosen time, n8n starts the run and loads two lists of RSS sources (for example, “Tech” and “Tools”).

RSS items are collected in batches. The workflow expands your feed URL lists, then loops through them in manageable chunks, reading each RSS feed and gathering new items without hammering any one service.

Everything gets combined into one clean input. Items from both categories merge into a single dataset, which is converted into a CSV file so the AI step can analyze it consistently.

Gemini curates, then email goes out. Google Gemini reviews the file, selects the most relevant stories based on your keywords, and the workflow formats that result into HTML before sending it through your SMTP “Send email” node.

You can easily modify the categories (Tech/Tools) to match your world, so the same setup can deliver “Competitor updates” and “Customer insights” instead. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Schedule Trigger

Set up the daily schedule that kicks off the digest workflow and splits into two parallel branches for tech and tool feeds.

  1. Add Scheduled Daily Trigger and set the schedule rule to run daily at 09:00 by configuring triggerAtHour to 9.
  2. Connect Scheduled Daily Trigger to both Tech Feed Sources and Tool Feed Sources.
  3. Confirm the execution fan-out: Scheduled Daily Trigger outputs to both Tech Feed Sources and Tool Feed Sources in parallel.

Tip: Parallel branches ensure tech and tool feeds are fetched simultaneously, shortening end-to-end runtime.

Step 2: Connect Feed Source Lists

Define the RSS sources for technology news and tool/product discovery.

  1. In Tech Feed Sources, set Mode to raw and jsonOutput to {"url" : ["https://techcrunch.com/feed/","https://www.theverge.com/rss/index.xml","https://analyticsindiamag.com/feed/","https://www.wired.com/feed/rss","https://thenextweb.com/feed"]}.
  2. In Tool Feed Sources, set Mode to raw and jsonOutput to {"Url":["https://www.reddit.com/r/SideProject/.rss","https://www.reddit.com/r/InternetIsBeautiful/.rss","https://dev.to/feed/tag/tools","https://www.producthunt.com/feed"]}.
  3. Connect Tech Feed Sources to Expand Tech URLs and Tool Feed Sources to Expand Tool URLs.

Step 3: Expand, Batch, and Read RSS Feeds

Split URL arrays into individual items, batch them, and fetch RSS entries for both categories.

  1. In Expand Tech URLs, set fieldToSplitOut to url; in Expand Tool URLs, set fieldToSplitOut to Url.
  2. In Batch Tech Feeds, set batchSize to 5; in Batch Tool Feeds, set batchSize to 4.
  3. In Read Tech RSS, set url to ={{ $('Expand Tech URLs').item.json.url }}.
  4. In Read Tool RSS, set url to ={{ $json.Url }}.
  5. Ensure the looping flow: Batch Tech FeedsRead Tech RSSBatch Tech Feeds and Batch Tool FeedsRead Tool RSSBatch Tool Feeds.
  6. Send both batches into Combine Feed Lists (one input for tech, one for tools).

⚠️ Common Pitfall: The Read Tech RSS node expects the exact url field name from Expand Tech URLs. A typo in the field name will produce empty feeds.

Step 4: Convert and Upload Feed Data for AI Processing

Merge the feed items into a file, then upload the file for AI summarization.

  1. Connect Combine Feed Lists to Convert Items CSV to turn the merged items into a file.
  2. Connect Convert Items CSV to Upload Feed File.
  3. In Upload Feed File, set resource to file and inputType to binary.
  4. Credential Required: Connect your googlePalmApi credentials in Upload Feed File.

Step 5: Configure AI Summarization and HTML Formatting

Use Gemini to produce an HTML digest, then sanitize the output for email.

  1. Connect Upload Feed File to Analyze Content.
  2. In Analyze Content, set resource to document and documentUrls to ={{ $json.fileUri }}.
  3. Keep the full prompt in text as provided to generate the digest using the HTML template.
  4. Credential Required: Connect your googlePalmApi credentials in Analyze Content.
  5. Connect Analyze Content to Format HTML Output.
  6. In Format HTML Output, paste the JavaScript that strips line breaks and returns html from $input.first().json.content.parts[0].text.

Tip: If Gemini returns content wrapped in code fences, the final email step removes them automatically via an expression.

Step 6: Configure the Email Dispatch

Send the formatted HTML digest to your inbox using SMTP.

  1. Connect Format HTML Output to Dispatch Email.
  2. In Dispatch Email, set html to ={{ $json.html.replace(/^```html/, '').replace(/```$/, '').trim() }}.
  3. Set subject to =⚡ Daily Tech Digest - {{ new Date().toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric" }) }}.
  4. Set toEmail to [YOUR_EMAIL] and fromEmail to [YOUR_EMAIL].
  5. Credential Required: Connect your smtp credentials in Dispatch Email.

Step 7: Test and Activate Your Workflow

Verify the workflow end-to-end and enable it for daily delivery.

  1. Use Execute Workflow to run the flow manually from Scheduled Daily Trigger.
  2. Confirm that Combine Feed Lists receives items from both tech and tool branches.
  3. Check that Analyze Content outputs HTML and Format HTML Output returns a clean html field.
  4. Verify the digest email arrives from Dispatch Email with a formatted HTML layout.
  5. When satisfied, toggle the workflow to Active for daily automation.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Google Gemini credentials can expire or need specific permissions. If things break, check the Gemini node credentials inside n8n first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Common Questions

How quickly can I implement this Gemini newsletter automation?

About 30 minutes if you already have your RSS feeds and credentials.

Can non-technical teams implement this newsletter curation?

Yes. No coding is required, but you will need to paste RSS URLs, connect Gemini, and test one email run.

Is n8n free to use for this Gemini newsletter automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in Google Gemini API usage, which depends on how many items you analyze each day.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this Gemini newsletter automation solution to my specific challenges?

You can swap the “Tech Feed Sources” and “Tool Feed Sources” lists for any categories you want, then update the keywords inside the Gemini “Analyze Content” prompt to match your goals. Common tweaks include separating “Competitor Updates” from “Industry News,” adding a category just for customer pain points, and changing the HTML layout in the formatting step so it matches your brand. If you want a review step, you can route the curated list to Telegram first and only send the email when you approve it.

Why is my Google Gemini connection failing in this workflow?

Usually it’s an API key issue or a credential mismatch between the two Gemini nodes. Re-check that the same valid Gemini credentials are selected in both “Upload Feed File” and “Analyze Content,” then confirm your billing/permissions in the Google account tied to the key. If it works for small runs but fails on bigger ones, you may be hitting quota limits, so reduce feeds or tighten the prompt to analyze fewer items.

What’s the capacity of this Gemini newsletter automation solution?

On n8n Cloud Starter, you can run a healthy daily digest for a personal or small team setup, and higher plans handle more volume. If you self-host, there’s no execution cap, but your server resources and the time it takes to read many RSS feeds will become the limiting factor. Practically, most people keep it to a few dozen feeds and let Gemini pick the top 10–15 items per category so the email stays readable.

Is this Gemini newsletter automation better than using Zapier or Make?

Often, yes, because this flow benefits from batching, merging, file conversion, and a multi-step AI curation process. n8n handles branching and “loop through feeds” logic cleanly, and self-hosting can keep costs predictable when you scale. Zapier or Make can be faster to set up for very small “RSS to email” tasks, but the moment you want two categories, smarter filtering, or custom HTML, you’ll feel the limits. If you’re unsure, Talk to an automation expert and we’ll map the simplest option for your setup.

Once this is running, your “news routine” becomes one email and a few minutes of reading. The workflow handles the repetitive filtering so you can focus on what to do with the insights.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal