🔓 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

Reddit to Gmail, daily trend digest you will read

Lisa Granqvist Partner Workflow Automation Expert

Your “quick Reddit check” turns into 40 minutes. Then you forget what you read, miss the thread that actually mattered, and end up reacting late to the trend everyone else already saw. That’s why Reddit Gmail digest automation is such a relief.

Marketing leads use it to spot hooks and angles before they’re everywhere. Investors lean on it for daily sentiment without doomscrolling. And if you run a small team, you get something even better: a shareable digest that keeps everyone on the same page.

This workflow monitors multiple subreddits, picks the posts that are actually trending, summarizes them with AI (including comment context), and sends a clean email to your Gmail inbox. You’ll see what it solves, what you’ll get, and how to set it up without getting buried in technical stuff.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Reddit to Gmail, daily trend digest you will read

The Problem: Reddit “Research” Is a Time Trap

Reddit is incredible for early signals, but it’s brutal as a daily workflow. You jump between subreddits, skim headlines, open ten tabs, then try to remember which post had the real insight buried in the third top comment. Next day, you do it again. The cost is not just time. It’s decision fatigue, missed context, and that nagging sense you’re always a step behind because you didn’t catch the right thread when it was hot.

It adds up fast. Here’s where it breaks down in real life.

  • Checking even 5 subreddits properly can eat about an hour, and that’s before you read comments.
  • High-signal posts are easy to miss because “hot” doesn’t always mean relevant to your goals.
  • When you do find something good, you still have to summarize it for yourself or your team.
  • Links get lost in Slack threads and browser bookmarks, so your “research” never becomes a reusable asset.

The Solution: A Daily Reddit Trend Digest Sent to Gmail

This workflow turns Reddit into a predictable daily input, not an endless feed. At a scheduled time (it’s set to 6 AM by default), it pulls “hot” posts across the subreddits you choose and filters down to threads with real engagement (for example, posts above 30 upvotes in the last 24 hours). Then it grabs the full thread context: the root post plus the top-level comments that usually contain the best counterpoints, examples, and links. After that, an AI model generates concise summaries for each thread, and n8n compiles everything into a clean HTML email with clickable Reddit links. You wake up to a digest you can scan in minutes and forward to your team without rewriting anything.

The workflow starts on a daily schedule, then loops through your subreddit list and collects the top threads. It enriches each thread with comments, summarizes, and finally formats everything into a Gmail-friendly digest that looks like a real newsletter, not a messy export.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you track 6 subreddits for a weekly client report. Manually, you might spend about 10 minutes per subreddit skimming posts, then another 30 minutes chasing comment context and saving links, so roughly 1.5 to 2 hours a day in practice. With this workflow, you spend maybe 5 minutes adjusting the subreddit list once, then your daily effort becomes “open Gmail and scan” for about 10 minutes. That’s close to an hour back on most days, and you still catch the important threads.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Reddit for pulling hot posts and comments
  • Gmail to send the daily digest email
  • OpenRouter API key (get it from your OpenRouter dashboard)

Skill level: Beginner. You’ll copy in your subreddits, connect accounts, and tweak one schedule setting.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A daily schedule kicks it off. n8n runs at your chosen time (6 AM in the current setup), so it’s waiting for you instead of the other way around.

Your subreddit list gets processed in a loop. The workflow takes the array of subreddits you provide, checks each one, and pulls “hot” posts from the last 24 hours. It also converts timestamps and merges the date fields so filtering stays reliable across timezones.

Only high-value threads make the cut. Posts below the engagement threshold are filtered out, and the remaining candidates are sorted by score so the most discussed items rise to the top. Then it batches through posts so your API calls stay manageable.

AI summarizes with comment context and formats the email. For each thread, the workflow fetches post details, collects top-level comments, flattens the comment tree, and runs a summarization chain using an OpenRouter chat model. Finally it aggregates summaries plus links, generates HTML, and sends the digest via Gmail.

You can easily modify the subreddit list and scoring threshold to match what you consider “trending” based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Scheduled Trigger

Set up the daily schedule so the digest runs automatically.

  1. Open Scheduled Daily Trigger and set the schedule rule to run at 06:00 (as configured in the node’s rule interval).
  2. Confirm the workflow timezone in settings is Asia/Singapore if you want the 6 AM schedule to match the original timing.

Step 2: Connect Reddit Topics and Recipients

Define the digest topic, subreddits to scan, and the recipient email.

  1. In Configure Topics & Recipients, set topic to Investing.
  2. Set subreddits to ["investing", "stocks"].
  3. Set email to your recipient address (replace [YOUR_EMAIL]).
  4. In Distribute Subreddit List, keep fieldToSplitOut as subreddits and destinationFieldName as subreddit.
Tip: You can add more subreddits to the subreddits array without changing any other nodes.

Step 3: Connect Reddit and Filter High-Quality Posts

This section retrieves hot posts, normalizes dates, and filters to recent, high-scoring items.

  1. Open Retrieve Hot Posts and select Credential Required: Connect your redditOAuth2Api credentials.
  2. Confirm Retrieve Hot Posts uses operation getAll, returnAll true, and subreddit set to {{ $json.subreddit }}.
  3. In Convert Post Date to ISO, keep created_iso set to the provided expression {{ (() => { const ts = Number($json.created_utc); const ms = ts > 1e12 ? ts : ts * 1000; return new Date(ms).toISOString(); })() }}.
  4. In Merge ISO Dates, set mode to combine and combineBy to combineByPosition.
  5. In Select Key Post Fields, map subreddit, id, date, score, and url using the expressions shown (e.g., {{ $json.created_iso }}).
  6. In Filter Recent High Score, keep the conditions for posts after {{ new Date(new Date($now).getTime() - 24 * 60 * 60 * 1000).toISOString() }} and score greater than 30.
  7. In Order by Score Desc, sort by score in descending order.
  8. In Batch Through Posts, keep batchSize set to {{ $input.all().length }} so all posts are processed in one batch.
⚠️ Common Pitfall: If your Reddit app does not have “read” scopes, Retrieve Hot Posts and Fetch Post Details will fail to return data.

Step 4: Build Post + Comment Threads (Parallel Execution)

This phase enriches posts with details, pulls top comments, and assembles thread text.

  1. In Fetch Post Details, select Credential Required: Connect your redditOAuth2Api credentials and keep postId as {{ $json.id }} and subreddit as {{ $json.subreddit }}.
  2. In Remove Duplicate IDs, set compare to selectedFields and fieldsToCompare to id.
  3. Keep Compose Root Post Body in Run Once for All Items mode to output one item per post.
  4. Compose Root Post Body outputs to both Combine Posts and Comments and Retrieve Top Comments in parallel.
  5. In Retrieve Top Comments, select Credential Required: Connect your redditOAuth2Api credentials and keep postId as {{ $json.post_id }}.
  6. Keep Flatten Comment Tree and Assemble Thread Text code as-is to structure threads.
  7. Use Keep Valid Comments to ensure post_id is not empty before Combine Posts and Comments.
  8. In Merge Thread and Details, keep mode combine and combineBy combineByPosition.
  9. In Map Thread Summary Fields, map id, thread_text, and link using {{ $json.id }}, {{ $json.thread_text }}, and {{ $json.url }}.

Step 5: Configure the Sub-Workflow Summarization Entry Point

The main workflow hands each thread to a sub-workflow that summarizes and formats content for email.

  1. In Run Sub-Workflow (Configure Required), choose the target workflow in workflowId (currently blank).
  2. Keep the mapped inputs in workflowInputs: {{ $json.id }}, {{ $json.link }}, {{ $('Configure Topics & Recipients').first().json.email }}, {{ $('Configure Topics & Recipients').first().json['topic'] }}, and {{ $json.thread_text }}.
  3. In the sub-workflow, use Subflow Input Trigger to accept inputs for topic, id, thread_text, link, and email.
  4. Subflow Input Trigger outputs to both Isolate Link Field and Isolate Thread Content in parallel.
⚠️ Common Pitfall: If you don’t select a workflow ID in Run Sub-Workflow (Configure Required), the automation will stop at that step.

Step 6: Set Up AI Summarization and Email Formatting

These nodes summarize comment threads and convert them into Gmail-friendly HTML.

  1. Open OpenRouter GPT Mini and select Credential Required: Connect your openRouterApi credentials. Keep model set to openai/gpt-4o-mini.
  2. Summarize Comment Threads uses OpenRouter GPT Mini as its language model—ensure credentials are added to OpenRouter GPT Mini, not the summarization node.
  3. In Merge Summaries with Links, keep mode combine and combineBy combineByPosition.
  4. In Aggregate Summaries Links, ensure fieldsToAggregate includes output.text and link.
  5. Format Gmail HTML also uses OpenRouter GPT Mini as the language model—credentials must remain on OpenRouter GPT Mini.
  6. Keep Format Gmail HTML text prompt exactly as provided to output clean HTML, and confirm the expressions {{ $json.text }} and {{ $json.link }} are intact.

Step 7: Configure Email Dispatch

Send the formatted digest through Gmail to the configured recipient.

  1. Open Dispatch Email Digest and select Credential Required: Connect your gmailOAuth2 credentials.
  2. Set sendTo to {{ $('Subflow Input Trigger').first().json.email }}.
  3. Set message to {{ $json.text }}.
  4. Set subject to {{ $('Subflow Input Trigger').first().json.topic }} {{ 'Daily Digest' }}.
  5. Keep appendAttribution set to false under options.

Step 8: Test and Activate Your Workflow

Validate end-to-end execution before running on schedule.

  1. Click Execute Workflow to run Scheduled Daily Trigger manually and verify posts flow through Retrieve Hot PostsFormat Gmail HTMLDispatch Email Digest.
  2. Check the output of Format Gmail HTML for valid HTML and confirm that links match the summaries.
  3. Verify the recipient inbox receives the digest email with the expected subject and formatted body.
  4. When satisfied, toggle the workflow to Active to enable daily runs.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Reddit OAuth2 credentials can expire or require the right app scopes. If things break, check your Reddit credential in n8n and re-authenticate first.
  • If you’re using Wait behavior (or your OpenRouter responses are slow), processing times vary. Bump up the wait duration or batch size if downstream nodes fail on empty responses.
  • Default summarization prompts are honestly a little generic. Add your topic framing and “what to extract” rules early, or you will end up editing every digest.

Frequently Asked Questions

How long does it take to set up this Reddit Gmail digest automation?

About 20 minutes once your accounts are ready.

Do I need coding skills to automate Reddit Gmail digest?

No. You’ll mostly connect accounts and edit the subreddit list and email address in one node.

Is n8n free to use for this Reddit Gmail digest 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 OpenRouter API costs, which are usually a few cents per digest depending on how many threads you summarize.

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.

Can I customize this Reddit Gmail digest workflow for different topics and subreddits?

Yes, and it’s the main reason this workflow is useful long-term. Update the subreddit array and the topic name inside the “Configure Topics & Recipients” (Set) node, then adjust the upvote threshold in the filtering step if you want stricter or looser results. Common tweaks include adding a second digest for a different topic, changing the delivery time, and summarizing fewer threads by lowering the batch size.

Why is my Reddit connection failing in this workflow?

Usually it’s expired Reddit OAuth2 credentials or a Reddit app configuration issue. Reconnect Reddit inside n8n, then rerun the workflow and watch the first Reddit fetch node for the exact error message. If you’re pulling lots of data at once, you can also hit rate limits, so reducing the number of subreddits or batching fewer posts per run can stabilize it.

How many threads can this Reddit Gmail digest automation handle?

A typical setup handles a few dozen threads per day without drama, and you can scale further by tightening the upvote filter or summarizing fewer posts.

Is this Reddit Gmail digest automation better than using Zapier or Make?

Often, yes, because this workflow isn’t a simple “grab a link and send an email” zap. You’re fetching lists of posts, filtering by date and score, batching items, pulling comments, deduplicating threads, and running an AI summarization chain before you format HTML. n8n handles that kind of branching and looping cleanly, and self-hosting can be a big deal if you want unlimited executions. Zapier or Make can still work if you keep it lightweight, but you’ll usually end up compromising on comment context or paying more as volume grows. If you want help choosing, Talk to an automation expert.

Reddit stays chaotic. Your research doesn’t have to. Set this up once, and your daily trend digest just shows up in Gmail like it always should have.

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