Automate RSS news to multi-platform social media publishing via PostPulse
This automation template allows you to automatically receive news from RSS feeds, process their content, and publish or schedule posts on various social media platforms using PostPulse.
⚠️Disclaimer: This workflow uses the community node @postpulse/n8n-nodes-postpulse. Make sure community nodes are enabled in your n8n instance before importing and using this template. 👉 To install it: Go to Settings → Community Nodes → Install and enter:"@postpulse/n8n-nodes-postpulse". 💡 For more details, see n8n Integration Guide: PostPulse Developers – n8n Integration.
Who Is This For?
-
Marketers who want to automatically fill their content plan with relevant news.
-
Content creators and editors who want to effectively distribute news across different platforms without unnecessary effort.
-
Media agencies that want to maintain a constant presence on social media by republishing content from reliable sources.
What Problem Does This Workflow Solve?
Instead of manually searching, copying, and publishing news, you get:
-
Automated news collection: The workflow automatically reads the RSS feed and finds new content.
-
Intelligent processing: It automatically extracts the text and, when possible, images from news articles, adapting the content for different social media platforms.
-
Seamless publishing: PostPulse publishes posts simultaneously on TikTok, Instagram, YouTube, LinkedIn, Telegram, Bluesky, X, and Threads.
-
Flexibility and customization: RSS feeds from different websites have unique structures. This workflow is designed as a flexible template that can automatically publish news (even without images) and allows easy adaptation to any news source.
-
Time saving: Automates routine processes, freeing up your time for more important tasks.
How It Works
This workflow runs on a schedule, reads news, and processes it before sending it to PostPulse.
-
Scheduled execution: The workflow is triggered at a set time, for example, daily at 9:00 AM.
-
RSS feed reading: The RSS Feed Read node connects to the specified RSS feed (default: https://rss.unian.ua/site/gplay_56_ukr.rss) and retrieves the latest news.
-
Filtering and media check: The If and Media Check IF nodes verify whether the news was published yesterday and whether it contains an image, looking for it in several possible fields (enclosure, media:content, or even <img> tags in the HTML).
-
Media upload: If an image is found, the PostPulse Upload Media node uploads it to PostPulse. Then the Get Upload Status node checks if the media is ready for publishing.
-
Post creation: The content (with or without media) is sent to the Publish Post nodes, which create a draft post in PostPulse, adapting the text to each platform’s limits (e.g., 280 characters for X/Twitter).
-
Publishing: PostPulse automatically publishes or schedules the posts across all connected platforms.
Setup
1. Connect PostPulse to n8n
-
Request your OAuth client key and secret from PostPulse support at support@post-pulse.com.
-
Add your PostPulse account in the Credentials section in n8n.
2. Find an RSS Feed that you need
The easiest way is to check the page’s source code.
- Open the news website you are interested in.
- Go to the page with a specific news category (e.g., "Sports").
- Press Ctrl + U (or Cmd + Option + U on Mac) to open the page’s source code.
- Press Ctrl + F (or Cmd + F on Mac) to search the text.
- Type "rss" and press Enter. Usually, you will find a link pointing to an XML page, which is the RSS feed.
3. Configure the RSS Feed Read node
-
Open the RSS Feed Read node.
-
Paste the URL of your RSS feed into the URL field.
4. Configure the Limit to N Post node
-
This node limits the number of posts generated in a single run.
-
By default, const limit = 1;. You can change the value from 1 to any number of posts you want to publish at once.
Requirements
-
Connected PostPulse accounts (TikTok, Instagram, YouTube, LinkedIn, Telegram, Bluesky, X, Threads).
-
OAuth client key and secret obtained from PostPulse.
-
An n8n instance with community nodes enabled.
✨ With this workflow, PostPulse and n8n become your all-in-one automation hub for publishing news.
How To Customize The Workflow
This workflow is designed to be fully flexible and adaptable to your specific needs. While it works out-of-the-box with the default RSS feed, you can easily optimize it for any news source:
-
Adapt to different RSS feeds: Each website’s RSS feed can have a unique structure. You can adjust the workflow to extract text, images, or additional fields as needed.
-
Handle missing media: Some feeds may not include images in standard fields. The workflow is built to publish posts even without images, but you can customize it to extract images from other tags or HTML elements.
-
Extend content extraction: If a feed stores the full text in a separate link, you can add nodes or logic to pull more content for richer posts.
-
Text trimming and platform-specific formatting: You can modify the trimming logic in the Publish Post nodes to fit platform limits or adjust content formatting as desired.
-
Flexible scheduling and limits: Easily change the number of posts per run, the schedule, or date filters to match your workflow and publishing strategy.
💡 Tip: The workflow is meant to be a template — fully functional out-of-the-box, but easily customizable to match any RSS feed or content source. Its main strength is flexibility, allowing you to adapt it to different feeds, extract more content, and adjust publishing rules without touching the core workflow.
Automate RSS News to Multi-Platform Social Media Publishing
This n8n workflow provides a robust framework for automating the publication of RSS feed content to multiple social media platforms. It's designed to fetch the latest news, process it, and then distribute it, with built-in logic for handling new items and preventing duplicate posts.
What it does
This workflow is a foundational template that, once configured with specific social media nodes, will:
- Schedule Trigger: Periodically activate the workflow to check for new RSS feed items.
- Read RSS Feed: Fetch the latest entries from a specified RSS feed URL.
- Process New Items: Utilize a
Functionnode to identify and prepare new items from the RSS feed for further processing. This typically involves comparing current items with previously processed ones to avoid duplicates. - Conditional Logic (If): Evaluate each item to determine if it's a new entry that needs to be published.
- Wait (Optional Delay): Introduce a delay, if configured, before proceeding with publishing, which can be useful for staggering posts or respecting API rate limits.
- Merge: Combine the processed items, likely after conditional routing, to ensure all relevant data is available for subsequent publishing steps.
- Sticky Note: Provides a placeholder for documentation or notes within the workflow.
Note: The provided JSON defines the core logic for fetching, processing, and routing RSS items. To publish to specific social media platforms (e.g., Twitter, LinkedIn, Facebook, etc.), you will need to add the respective n8n nodes and configure them within the If node's "true" branch.
Prerequisites/Requirements
- n8n Instance: A running n8n instance (self-hosted or cloud).
- RSS Feed URL: The URL of the RSS feed you wish to monitor.
- Social Media Accounts: Accounts for the social media platforms you intend to publish to (e.g., Twitter, LinkedIn, Facebook, Mastodon, etc.).
- Social Media Credentials: API keys or OAuth credentials for your chosen social media platforms, configured as n8n credentials.
Setup/Usage
- Import the Workflow:
- In your n8n instance, go to "Workflows".
- Click "New" or "Import from JSON".
- Paste the provided JSON into the import dialog.
- Configure the Schedule Trigger:
- Open the "Schedule Trigger" node.
- Set your desired interval for checking the RSS feed (e.g., every 15 minutes, hourly).
- Configure the RSS Read Node:
- Open the "RSS Read" node.
- Enter the URL of the RSS feed you want to monitor in the "URL" field.
- Customize the Function Node:
- The "Function" node (ID 14) is crucial for identifying new items. You will likely need to implement logic here to store and compare previously seen RSS item IDs or titles to prevent republishing old news. This typically involves using a database, a Google Sheet, or n8n's internal
setItemandgetItemfunctions for simple state management.
- The "Function" node (ID 14) is crucial for identifying new items. You will likely need to implement logic here to store and compare previously seen RSS item IDs or titles to prevent republishing old news. This typically involves using a database, a Google Sheet, or n8n's internal
- Extend for Social Media Publishing:
- From the "True" output of the "If" node (ID 20), add the appropriate n8n nodes for each social media platform you want to publish to.
- Configure each social media node with your credentials and map the relevant data from the RSS feed (e.g., title, link, description) to the post content.
- Example: For Twitter, add a "Twitter" node, select "Tweet" operation, and use expressions like
{{ $json.title }} {{ $json.link }}for the tweet text.
- Activate the Workflow:
- Once configured, enable the workflow by toggling the "Active" switch in the top right corner of the workflow editor.
This workflow provides a powerful starting point for automating your content distribution strategy. Remember to test thoroughly after making any changes!
Related Templates
Track competitor SEO keywords with Decodo + GPT-4.1-mini + Google Sheets
This workflow automates competitor keyword research using OpenAI LLM and Decodo for intelligent web scraping. Who this is for SEO specialists, content strategists, and growth marketers who want to automate keyword research and competitive intelligence. Marketing analysts managing multiple clients or websites who need consistent SEO tracking without manual data pulls. Agencies or automation engineers using Google Sheets as an SEO data dashboard for keyword monitoring and reporting. What problem this workflow solves Tracking competitor keywords manually is slow and inconsistent. Most SEO tools provide limited API access or lack contextual keyword analysis. This workflow solves that by: Automatically scraping any competitor’s webpage with Decodo. Using OpenAI GPT-4.1-mini to interpret keyword intent, density, and semantic focus. Storing structured keyword insights directly in Google Sheets for ongoing tracking and trend analysis. What this workflow does Trigger — Manually start the workflow or schedule it to run periodically. Input Setup — Define the website URL and target country (e.g., https://dev.to, france). Data Scraping (Decodo) — Fetch competitor web content and metadata. Keyword Analysis (OpenAI GPT-4.1-mini) Extract primary and secondary keywords. Identify focus topics and semantic entities. Generate a keyword density summary and SEO strength score. Recommend optimization and internal linking opportunities. Data Structuring — Clean and convert GPT output into JSON format. Data Storage (Google Sheets) — Append structured keyword data to a Google Sheet for long-term tracking. Setup Prerequisites If you are new to Decode, please signup on this link visit.decodo.com n8n account with workflow editor access Decodo API credentials OpenAI API key Google Sheets account connected via OAuth2 Make sure to install the Decodo Community node. Create a Google Sheet Add columns for: primarykeywords, seostrengthscore, keyworddensity_summary, etc. Share with your n8n Google account. Connect Credentials Add credentials for: Decodo API credentials - You need to register, login and obtain the Basic Authentication Token via Decodo Dashboard OpenAI API (for GPT-4o-mini) Google Sheets OAuth2 Configure Input Fields Edit the “Set Input Fields” node to set your target site and region. Run the Workflow Click Execute Workflow in n8n. View structured results in your connected Google Sheet. How to customize this workflow Track Multiple Competitors → Use a Google Sheet or CSV list of URLs; loop through them using the Split In Batches node. Add Language Detection → Add a Gemini or GPT node before keyword analysis to detect content language and adjust prompts. Enhance the SEO Report → Expand the GPT prompt to include backlink insights, metadata optimization, or readability checks. Integrate Visualization → Connect your Google Sheet to Looker Studio for SEO performance dashboards. Schedule Auto-Runs → Use the Cron Node to run weekly or monthly for competitor keyword refreshes. Summary This workflow automates competitor keyword research using: Decodo for intelligent web scraping OpenAI GPT-4.1-mini for keyword and SEO analysis Google Sheets for live tracking and reporting It’s a complete AI-powered SEO intelligence pipeline ideal for teams that want actionable insights on keyword gaps, optimization opportunities, and content focus trends, without relying on expensive SEO SaaS tools.
Create personalized email outreach with AI, Telegram bot & website scraping
Demo Personalized Email This n8n workflow is built for AI and automation agencies to promote their workflows through an interactive demo that prospects can try themselves. The featured system is a deep personalized email demo. --- 🔄 How It Works Prospect Interaction A prospect starts the demo via Telegram. The Telegram bot (created with BotFather) connects directly to your n8n instance. Demo Guidance The RAG agent and instructor guide the user step-by-step through the demo. Instructions and responses are dynamically generated based on user input. Workflow Execution When the user triggers an action (e.g., testing the email demo), n8n runs the workflow. The workflow collects website data using Crawl4AI or standard HTTP requests. Email Demo The system personalizes and sends a demo email through SparkPost, showing the automation’s capability. Logging and Control Each user interaction is logged in your database using their name and id. The workflow checks limits to prevent misuse or spam. Error Handling If a low-CPU scraping method fails, the workflow automatically escalates to a higher-CPU method. ⚙️ Requirements Before setting up, make sure you have the following: n8n — Automation platform to run the workflow Docker — Required to run Crawl4AI Crawl4AI — For intelligent website crawling Telegram Account — To create your Telegram bot via BotFather SparkPost Account — To send personalized demo emails A database (e.g., PostgreSQL, MySQL, or SQLite) — To store log data such as user name and ID 🚀 Features Telegram interface using the BotFather API Instructor and RAG agent to guide prospects through the demo Flow generation limits per user ID to prevent abuse Low-cost yet powerful web scraping, escalating from low- to high-CPU flows if earlier ones fail --- 💡 Development Ideas Replace the RAG logic with your own query-answering and guidance method Remove the flow limit if you’re confident the demo can’t be misused Swap the personalized email demo with any other workflow you want to showcase --- 🧠 Technical Notes Telegram bot created with BotFather Website crawl process: Extract sub-links via /sitemap.xml, sitemap_index.xml, or standard HTTP requests Fall back to Crawl4AI if normal requests fail Fetch sub-link content via HTTPS or Crawl4AI as backup SparkPost used for sending demo emails --- ⚙️ Setup Instructions Create a Telegram Bot Use BotFather on Telegram to create your bot and get the API token. This token will be used to connect your n8n workflow to Telegram. Create a Log Data Table In your database, create a table to store user logs. The table must include at least the following columns: name — to store the user’s name or Telegram username. id — to store the user’s unique identifier. Install Crawl4AI with Docker Follow the installation guide from the official repository: 👉 https://github.com/unclecode/crawl4ai Crawl4AI will handle website crawling and content extraction in your workflow. --- 📦 Notes This setup is optimized for low cost, easy scalability, and real-time interaction with prospects. You can customize each component — Telegram bot behavior, RAG logic, scraping strategy, and email workflow — to fit your agency’s demo needs. 👉 You can try the live demo here: @emaildemobot ---
Automate event RSVPs with email validation & badge generation using VerifiEmail & HTMLCssToImage
Validated RSVP Confirmation with Automated Badge Generation Overview: This comprehensive workflow automates the entire event RSVP process from form submission to attendee confirmation, including real-time email validation and personalized digital badge generation. ✨ KEY FEATURES: • Real-time Email Validation - Verify attendee emails using VerifiEmail API to prevent fake registrations • Automated Badge Generation - Create beautiful, personalized event badges with attendee details • Smart Email Routing - Send confirmation emails with badges for valid emails, rejection notices for invalid ones • Comprehensive Logging - Track all RSVPs (both valid and invalid) in Google Sheets for analytics • Dual Path Logic - Handle valid and invalid submissions differently with conditional branching • Anti-Fraud Protection - Detect disposable emails and invalid domains automatically 🔧 WORKFLOW COMPONENTS: Webhook Trigger - Receives RSVP submissions Email Validation - Verifies email authenticity using VerifiEmail API Conditional Logic - Separates valid from invalid submissions Badge Creator - Generates HTML-based personalized event badges Image Converter - Converts HTML badges to shareable PNG images using HTMLCssToImage Email Sender - Delivers confirmation with badge or rejection notice via Gmail Data Logger - Records all attempts in Google Sheets for tracking and analytics 🎯 PERFECT FOR: • Conference organizers managing hundreds of RSVPs • Corporate event planners requiring verified attendee lists • Webinar hosts preventing fake registrations • Workshop coordinators issuing digital badges • Community event managers tracking attendance 💡 BENEFITS: • Reduces manual verification time by 95% • Eliminates fake email registrations • Creates professional branded badges automatically • Provides real-time RSVP tracking and analytics • Improves attendee experience with instant confirmations • Maintains clean, verified contact lists 🛠️ REQUIRED SERVICES: • n8n (cloud or self-hosted) • VerifiEmail API (https://verifi.email) • HTMLCssToImage API (https://htmlcsstoimg.com) • Gmail account (OAuth2) • Google Sheets 📈 USE CASE SCENARIO: When someone submits your event RSVP form, this workflow instantly validates their email, generates a personalized badge with their details, and emails them a confirmation—all within seconds. Invalid emails receive a helpful rejection notice, and every submission is logged for your records. No manual work required! 🎨 BADGE CUSTOMIZATION: The workflow includes a fully customizable HTML badge template featuring: • Gradient background with modern design • Attendee name, designation, and organization • Event name and date • Email address and validation timestamp • Google Fonts (Poppins) for professional typography 📊 ANALYTICS INCLUDED: Track metrics like: • Total RSVPs received • Valid vs invalid email ratio • Event-wise registration breakdown • Temporal patterns • Organization/company distribution ⚡ PERFORMANCE: • Processing time: ~3-5 seconds per RSVP • Scales to handle 100+ concurrent submissions • Email delivery within 10 seconds • Real-time Google Sheets updates 🔄 EASY SETUP: Import the workflow JSON Configure your credentials (detailed instructions included) Create your form with required fields (name, email, event, designation, organization) Connect the webhook Activate and start receiving validated RSVPs! 🎓 LEARNING VALUE: This workflow demonstrates: • Webhook integration patterns • API authentication methods • Conditional workflow branching • HTML-to-image conversion • Email automation best practices • Data logging strategies • Error handling techniques ---