Learn 🧠 All Concepts (20) 🤖 What is an LLM? 📚 RAG Explained ⚡ AI Agents 💻 Run AI Locally 🇮🇳 AI in India 📖 Learn Tracks 🔧 DevOps Track ⚙️ AI Ops Track 🗺️ AI Engineer Roadmap
Tools 🔧 AI Tools Directory 🔓 Open Source AI ⭐ Top GitHub Repos ✦ Claude Skill Repos 🚀 Ready-to-Deploy Projects
Build 🏗️ Build Hub 🎯 Master Prompts 🧩 RAG Agents 🚀 App Megaprompts
Workflows ⚡ All Workflows (22) 🎥 Text to Video 🎞️ Image to Video 🔊 Text to Speech ♻️ Automation
Resources 🧪 Colab Notebooks ⚙️ n8n Workflows 📈 Algo Trading 💰 Passive Income
🗂️ Browse All Topics About AItheGuru
← n8n Workflows
📰 // n8n Workflow · Content Automation

Daily AI news digest → Telegram + Email

Fetches from 10 RSS feeds every morning, summarises with Claude/GPT, sends to Telegram channel and email list.

⚡ Schedule (daily 7am) → Telegram + Email 8 nodes Medium

Workflow code

Copy this code to understand the workflow logic. Replace all API keys and credentials with your own before running.

// n8n workflow structure (JSON import) { "nodes": [ { "type": "Schedule", "cron": "0 7 * * *" }, { "type": "RSS Feed", "urls": [ "https://huggingface.co/blog/feed.xml", "https://openai.com/news/rss", "https://www.anthropic.com/news/rss", "https://techcrunch.com/tag/ai/feed/" ] }, { "type": "Filter", "condition": "publishedAt > 24h ago" }, { "type": "HTTP Request (Claude API)", "body": { "model": "claude-sonnet-4-5", "messages": [{ "role": "user", "content": "Summarise this AI news in 3 bullet points for an Indian tech audience: {{$json.content}}" }] } }, { "type": "Telegram", "chatId": "@your_channel" }, { "type": "Gmail", "to": "your-list@group.com" } ] }