Quick Overview
This workflow runs hourly to read multiple RSS/Atom feeds, applies rule-based topic matching, relevance scoring, sentiment and entity tagging with deduplication, and then sends scored HTML email digests via SMTP (optionally routed per audience) when new matches are found.
How it works
- Runs on an hourly schedule trigger.
- Loads the monitoring configuration (feed URLs, topic include/exclude rules, scoring weights, sentiment lexicon, entity aliases, and digest recipients).
- Fetches items from each configured RSS/Atom feed and continues even if a feed fails.
- Normalizes each article, drops items that match no topic, scores relevance and sentiment, tags matching entities, and de-duplicates links across runs using workflow static data.
- Builds one or more HTML email digests (a full digest plus optional routed digests filtered by topic) and applies minimum relevance and maximum item limits.
- Skips sending when there are zero matches unless empty-run emails are enabled, then sends each digest via SMTP email.
Setup
- Add an SMTP credential to the email-sending step so n8n can send messages.
- Update the Config settings with your feed URLs, topic rules, entity aliases, scoring/lexicon values, and digest sender/recipient addresses (including any route-specific recipients and topic filters).
- Optionally adjust the schedule interval and the deduplication cap (seenCap) to fit your monitoring cadence and retention needs.