This workflow corresponds to n8n.io template #6841 — we link there as the canonical source.
This workflow follows the Agent → Gmail recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "8RiTOY4w1qA2cIHH",
"name": "Automate weekly Hollywood film briefing via Tavily and Gemini",
"tags": [],
"nodes": [
{
"id": "6c3feb79-dbbe-4e1c-849d-3a1792865611",
"name": "Send a message",
"type": "n8n-nodes-base.gmail",
"position": [
2016,
400
],
"parameters": {
"sendTo": "user@example.com",
"message": "={{ $json.output.body }}",
"options": {},
"subject": "={{ $json.output.subject }}"
},
"typeVersion": 2.1
},
{
"id": "f299b3c1-3293-4aaa-8885-be14992c313e",
"name": "Hollywood News Research Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
1248,
400
],
"parameters": {
"text": "=You are an AI summarizer creating a daily Hollywood film industry briefing.\n\nYou will receive four Tavily search results:\n- Hollywood movies releasing this week\n- Hollywood box office results last week\n- Hollywood news\n- Must\u2011watch Hollywood movies currently in theatres\n\nEach result contains `title` and `content`.\n\n---\n\n### TASK\nSummarize each result into Gmail\u2011friendly HTML with emojis and bullet points:\n\n\ud83c\udfac Releases \n\ud83d\udcca Box Office \n\ud83d\udcf0 News \n\ud83c\udfa5 Must-Watch Movies \n\nFor **Must-Watch Movies**:\n- If details (reviews/hype) exist, summarize them briefly.\n- If only movie names appear, **assume reasons** (e.g., \u201cgreat for IMAX/4DX,\u201d \u201cbig visual effects,\u201d \u201caudience buzz,\u201d or \u201cfan\u2011favorite franchise\u201d).\n\nIf no data at all, write \u201cNo data available\u201d.\n\n---\n\n### OUTPUT FORMAT\nReturn JSON:\n{\n \"subject\": \"Daily Hollywood Film Industry Briefing \u2013 {{ $json['Readable date'] }}\",\n \"body\": \"<html>\n \ud83c\udfac Releases\n <ul><li>Movie 1</li></ul>\n \ud83d\udcca Box Office\n <ul><li>Result 1</li></ul>\n \ud83d\udcf0 News\n <ul><li>Update 1</li></ul>\n \ud83c\udfa5 Must-Watch Movies\n <ul><li>Recommendation 1 with assumed reason (if needed)</li></ul>\n </html>\"\n}\n",
"options": {},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 2.1
},
{
"id": "dc02dc33-b13b-4892-b5a6-470a37034b31",
"name": "Fetch Weekly Releases (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1024,
624
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood movies releasing this week\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "f0000837-1172-4c5a-8aea-791e032362d4",
"name": "Fetch Weekly Box Office (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1216,
624
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood box office results last week\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "07db402d-013d-4e4b-9fa4-ad7061bf9bb8",
"name": "Fetch Hollywood News (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1408,
624
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"hollywood news latest casting director production\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "b4f79b09-9400-4320-bf1c-0d80c7f6f81b",
"name": "Fetch Must-Watch Movies (Tavily)",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1600,
624
],
"parameters": {
"url": "https://api.tavily.com/search",
"method": "POST",
"options": {},
"jsonBody": "={\n \"query\": \"best hollywood movies playing in theatres\",\n \"search_depth\": \"basic\",\n \"time_range\": \"week\",\n \"max_results\": 5\n}\n",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "Authorization",
"value": "{{$credentials.TavilyApiKey}}"
}
]
}
},
"typeVersion": 4.2
},
{
"id": "ae3101db-1b83-410c-a652-9d98f6e923c1",
"name": "Format Output for Email",
"type": "@n8n/n8n-nodes-langchain.outputParserStructured",
"position": [
1808,
624
],
"parameters": {
"jsonSchemaExample": "{\n \"subject\": \"Daily Hollywood Film Industry Briefing \u2013 July 25, 2025\",\n \"body\": \"<html> ... formatted content ... </html>\"\n}\n"
},
"typeVersion": 1.3
},
{
"id": "616af767-7d9e-46c0-95ce-052d98eb17bf",
"name": "Weekly Thursday Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
656,
400
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"triggerAtDay": [
4
],
"triggerAtHour": 7
}
]
}
},
"typeVersion": 1.2
},
{
"id": "d2a93b27-543b-4701-95a3-6536613c3531",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
0,
0
],
"parameters": {
"width": 576,
"height": 992,
"content": "## Try It Out! \ud83c\udfac(for free)\n\n### This n8n template demonstrates how to build a **weekly Hollywood film industry briefing** using Tavily for real-time search and Google Gemini for summarization. It sends a concise, emoji\u2011styled email with **movie releases, box office results, industry news, and must\u2011watch recommendations**.\n\nUse cases: Perfect for **film journalists, entertainment blogs, or movie fans** who want an automated weekly update in their inbox.\n\n### How it works\n\n* **Trigger:** Scheduled every Thursday morning (configurable).\n* **Search:** Four Tavily API calls fetch:\n * Movies releasing this week\n * Last week\u2019s box office results\n * Hollywood industry news\n * Must-watch movies currently in theatres\n* **Summarization:** Google Gemini processes the search results and formats them into Gmail\u2011friendly HTML with emojis and bullet points.\n* **Output:** Email sent automatically via Gmail node with subject and formatted briefing.\n\n### How to use\n\n* Configure **Tavily API** and **Gmail OAuth2** credentials in n8n.\n* (Optional) Edit search queries in Tavily nodes to focus on specific genres or regions.\n* Adjust the **schedule trigger** to your preferred day/time.\n\n### Requirements\n\n* Tavily API account (free tier available)\n* Google Gemini API key for summarization\n* Gmail account (OAuth2 credentials)\n\n### Need Help?\n\nDM me on [X (formerly Twitter)](https://x.com/manav170303) or email [titanfactz@gmail.com](mailto:titanfactz@gmail.com).\n\nAlways open to feedback and improvements!\n"
},
"typeVersion": 1
},
{
"id": "69476e75-f1a9-4bdb-8de6-89ceb6b55eaa",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
2272,
0
],
"parameters": {
"color": 7,
"width": 752,
"height": 896,
"content": "## Example Email Output\n\n**Daily Hollywood Film Industry Briefing \u2013 2025, 07:00 am**\nInbox\n\n[titanfactz@gmail.com](mailto:titanfactz@gmail.com)\n07:00am (0 minutes ago)\nto me\n\n## \ud83c\udfac **Releases**\n* Dora and the Search for Sol Dorado (July 2, 2025)\n* Jurassic World Rebirth (July 2, 2025)\n* The Old Guard 2 (July 2, 2025)\n* The Sound (June 27, 2025)\n\n## \ud83d\udcca **Box Office**\n* Fantastic Four: First Steps \u2013 estimated \\$40M-\\$45M opening\n* Bad Guys 2 \u2013 estimated \\$22M opening\n* Naked Gun \u2013 estimated \\$16M opening\n* Together \u2013 estimated \\$10M+ over 5-day opening\n* Superman \u2013 \\$24.8 million last week (\\$289.5 million total)\n* Jurassic World: Rebirth \u2013 \\$13.0 million last week (\\$301.5 million total)\n* F1: The Movie \u2013 \\$6.2 million last week (\\$165.5 million total)\n\n## \ud83d\udcf0 **News**\n* Michael Pe\u00f1a joins Chris Hemsworth and Lily James in Amazon\u2019s new submarine action film, *Subversion*.\n* Casting director seeks 2,000 extras for a massive concert scene in the new TV series *9-1-1*.\n* *Emily in Paris* casting director Juliette Menager discusses finding Sylvie and Camille Razat\u2019s exit.\n\n## \ud83c\udfa5 **Must-Watch Movies**\n* Caught by the Tides \u2013 Jia Zhangke\u2019s latest experimental film blending memories and archives.\n* Sinners \u2013 Highly rated 9.5/10, a compelling cinematic experience.\n* Fantastic Four: The First Steps \u2013 A big Marvel win, rated 9/10 with stunning visuals.\n* MI: The Final Reckoning \u2013 Rated 8.5/10, audiences are buzzing about this action-packed finale.\n* Superman \u2013 Fan-favorite franchise, rated 8.5/10, delivering powerful storytelling.\n* Ballerina \u2013 Rated 8.5/10, expected to feature breathtaking choreography and action.\n* Thunderbolts \u2013 Rated 7.5/10, thrilling ensemble film with dynamic character arcs."
},
"typeVersion": 1
},
{
"id": "c1a150d1-ea4b-4974-9666-da79e1d58111",
"name": "Google Gemini 2.5 Flash",
"type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini",
"position": [
816,
624
],
"parameters": {
"options": {}
},
"typeVersion": 1
},
{
"id": "e7127690-4873-41c2-b900-56efc200d570",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
896,
1248
],
"parameters": {
"rule": {
"interval": [
{
"field": "weeks",
"triggerAtDay": [
5
],
"triggerAtHour": 7
}
]
}
},
"typeVersion": 1.2
},
{
"id": "6ce1e1b9-397a-410f-aa75-19e5cc1467ee",
"name": "AI Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
1296,
1248
],
"parameters": {
"text": "=You are an AI summarizer creating a daily Hollywood film industry briefing.\nYou have access to web search and must perform FOUR structured searches and summarize results into a clean, factual briefing.\n\nSearch Tasks\n1) Weekly Movie Releases (Hollywood)\nFind up to 10 movies releasing in theatres THIS WEEK ONLY.\n\nStrictly exclude:\n\nOTT releases or web series\n\nOld or previously released movies (even if trending or re-released)\n\nMonthly/yearly recap lists\n\nProvide for each movie:\n\nName\n\nExact release date\n\nDay of the week (e.g., Friday)\n\nVerify releases are between Monday\u2013Sunday of the current week based on {{ $json['Readable date'] }}.\nIf fewer than 10, include as many accurate releases as possible.\n\n2) Box Office Results (Hollywood)\nFind:\n\nTop highest-grossing Hollywood films of THIS YEAR (worldwide gross)\n\nLast week\u2019s box office performance (Hollywood) with gross numbers\n\nHighlight notable new releases and trends (e.g., record-breaking debut, strong overseas performance).\n\nCurrent week is {{ $json['Readable date'] }}, current day is {{ $json['Day of week'] }}.\nIgnore any box office data older than last week.\n\n3) Industry Buzz (Casting / Directors / Strikes)\nProvide exactly 7 major updates from Hollywood:\n\nCasting announcements\n\nDirector signings/new projects\n\nProduction updates & filming progress\n\nStrikes, controversies, industry events\n\nMust be from this week only (ignore outdated news).\nProvide detailed summaries (context + relevance).\nDo not include links \u2014 summaries only.\nMust always give 7 updates, even if some are long.\n\n4) Best Movies Currently in Theatres\nRecommend best currently running Hollywood movies in theatres in Surat, India.\n\nExclude old films (e.g., pre-2025 releases like Fast X or Oppenheimer).\n\nProvide:\n\nWhy recommended (reviews, visuals, fan hype)\n\nBest format (e.g., IMAX, 3D, standard)\n\nOnly include movies running this week or recently released (before {{ $json['Readable date'] }}).\n\nFormatting Rules\nMovie names must be plain text (no bold, no markdown).\n\nUse emojis for section headers:\n\n\ud83c\udfac Releases\n\n\ud83d\udcca Box Office\n\n\ud83d\udcf0 Industry Buzz\n\n\ud83c\udfa5 Must-Watch in Theatres\n\nInclude release dates, box office numbers where available.\n\nIf no data for a section, output \u201cNo data available\u201d (do not guess).\n\nOutput Requirements\nReturn as a JSON object with two keys:\n\nsubject: Daily Hollywood Film Industry Briefing \u2013 {{ $json['Readable date'] }}\n\nbody: Full HTML email (Gmail-friendly) with sections, bullet lists, emojis, and clean formatting. No markdown.\n\nCritical Instructions\nUse only fresh search results (ignore outdated or evergreen data).\n\nExclude re-released films unless explicitly stated as new this week.\n\nEnsure weekly relevance: include only events/releases around this week\u2019s date.\n\nAvoid duplicates; merge similar data cleanly.\n\nPrioritize accuracy \u2014 if unsure, clearly state \u201cNo data available.\u201d",
"options": {},
"promptType": "define"
},
"typeVersion": 2.1
},
{
"id": "60e63ea3-63ce-48f2-ae77-f81ec89b27d9",
"name": "OpenAI Chat Model",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1248,
1472
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4.1-mini"
},
"options": {}
},
"typeVersion": 1.2
},
{
"id": "0158b036-f57d-4478-9184-1755ecc0de35",
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequestTool",
"position": [
1520,
1472
],
"parameters": {
"method": "POST",
"options": {}
},
"typeVersion": 4.2
},
{
"id": "8f68597f-06e7-403f-8dd0-57fdce9b48e8",
"name": "Send a message1",
"type": "n8n-nodes-base.gmail",
"position": [
1856,
1248
],
"parameters": {
"sendTo": "user@example.com",
"message": "={{ $json.output.body }}",
"options": {},
"subject": "={{ $json.output.subject }}"
},
"typeVersion": 2.1
},
{
"id": "77f7fc9d-69fc-40a6-b2f3-bc7374571ecc",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
2160,
1104
],
"parameters": {
"color": 7,
"width": 944,
"height": 1504,
"content": "**Subject:** Daily Hollywood Film Industry Briefing \u2013 August 3, 2025\n\n---\n\nGood morning,\nHere's your daily Hollywood film briefing for August 3, 2025:\n\n---\n\n\ud83c\udfac **Releases**\n\n* The Bad Guys 2 \u2013 Released Friday, August\u00a01,\u00a02025\n* The Naked Gun \u2013 Released Friday, August\u00a01,\u00a02025\n\nThese are the confirmed new wide theatrical Hollywood releases this week (Monday through Sunday of current week). No additional new Hollywood theatrical releases found for this week.\n\n---\n\n\ud83d\udcca **Box Office**\n\n**Highest\u2011grossing Hollywood films of 2025 (worldwide):**\n\n* Ne Zha\u00a02 \u2013 approx. \\$1.90\u202fbillion (non\u2011Hollywood Chinese animated film leads)\n* Lilo & Stitch \u2013 approx. \\$1.02\u202fbillion\n* A Minecraft Movie \u2013 approx. \\$955\u202fmillion\n* Jurassic World Rebirth \u2013 approx. \\$731\u202fmillion\n* How to Train Your Dragon \u2013 approx. \\$610\u202fmillion\n\n**Last week\u2019s box office performance (Monday\u2013Sunday):**\n\n* The Fantastic Four: First Steps \u2013 domestic debut \\~\\$118\u202fM; global \\~\\$218\u202fM, Marvel\u2019s biggest opening of 2025\n* Superman \u2013 added \\~\\$94\u202fM worldwide last week, passing \\$500\u202fM global total\n* Jurassic World Rebirth \u2013 up \\~\\$70\u202fM worldwide last week, despite \\~40\u202f% drop week\u2011on\u2011week\n* F1: The Movie \u2013 up \\~\\$48\u202fM last week internationally/domestically growth visible\n* Lilo & Stitch \u2013 added \\~\\$10\u202fM worldwide last week, slower tail but still billion\u2011plus gross\n\n**Highlights & trends:**\nFantastic Four\u2019s strong debut reboots Marvel success, signaling resumed audience interest; Superman continues to hold strong; Jurassic World Rebirth remains durable after holiday surge; surge in box office recovery noted across key titles. Overall box office up \\~12\u201315\u202f% year\u2011on\u2011year.\n\n---\n\n\ud83d\udcf0 **Industry Buzz**\n\n1. Christopher Nolan has signed to direct a massive \\$250\u202fmillion adaptation of Homer\u2019s *The Odyssey*, starring Matt Damon and Tom Holland, with Imax pre\u2011sales at 95\u202f% capacity across major locations.\n2. Marvel has relaunched the *Fantastic Four* franchise successfully with *First Steps*; positive CinemaScore and strong visuals marking a fresh start.\n3. DC\u2019s *Superman* continues strong with over \\$500\u202fM global, solidifying DC\u2019s summer comeback.\n4. Universal\u2019s *Jurassic World Rebirth* continues strong overseas, especially in China, contributing to \\$318\u202fM global in opening holiday weekend.\n5. Warner Bros.\u2013Discovery stock surges (\\~30\u202f%) amid box office rebound, with Disney, IMAX and Cinemark also seeing robust growth in 2025.\n6. *Ne Zha\u00a02* becomes highest\u2011grossing animated and non\u2011Hollywood film ever, crossing \\$2\u202fbillion globally\u2014though not Hollywood, its impact on global trends is notable.\n7. *Mission: Impossible \u2013 The Final Reckoning* quietly solidifies strong global numbers (\\~\\$562\u202fM) and continues reliable franchise performance.\n\n---\n\n\ud83c\udfa5 **Must\u2011Watch in Theatres (Surat, India)**\n\n* **The Fantastic Four: First Steps** \u2013 Currently showing in English/Hindi/Tamil/Telugu in Surat cinemas; hyped globally, strong visuals, action\u2011heavy, best experienced in IMAX or premium formats if available in Surat multiplexes. Runs this week.\n* **F1: The Movie** \u2013 Available in Surat in multiple languages, strong reviews praising adrenaline\u2011fuelled direction and visuals and growing fan hype; ideal in standard or Dolby formats for immersive sound and speed feel.\n* **Jurassic World Rebirth** \u2013 Still playing in Surat, popular with family audiences; grand visuals and dinosaur action well\u2011suited to IMAX or large format screens.\n\n---\n\nThat\u2019s all for today\u2019s briefing. Have a great theatrical weekend ahead!"
},
"typeVersion": 1
},
{
"id": "3833cf6f-66df-469a-a8e3-56ba508f6f8a",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
272,
1232
],
"parameters": {
"width": 480,
"content": "### Cool, right? But here\u2019s the twist:\nSwap in ChatGPT \u2014 GPT\u20113.5 Turbo (\u2248\u202f$0.002/run), GPT\u20114o (\u2248\u202f$0.009/run), or GPT\u20114.5 (\u2248\u202f$0.15/run) \u2014 and the briefing goes nuclear: cleaner, richer, straight\u2011up \u201cdid\u2011a\u2011human\u2011write\u2011this?\u201d energy.\nBasically IMAX\u2011grade output for the cost of a coffee\u2026 or a flex if you go full 4.5."
},
"typeVersion": 1
}
],
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "8016c395-5396-4c0a-b306-aa5f9c8b3147",
"connections": {
"AI Agent": {
"main": [
[
{
"node": "Send a message1",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"ai_tool": [
[
{
"node": "AI Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Schedule Trigger": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Format Output for Email": {
"ai_outputParser": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_outputParser",
"index": 0
}
]
]
},
"Google Gemini 2.5 Flash": {
"ai_languageModel": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Weekly Thursday Trigger": {
"main": [
[
{
"node": "Hollywood News Research Agent",
"type": "main",
"index": 0
}
]
]
},
"Fetch Hollywood News (Tavily)": {
"ai_tool": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Hollywood News Research Agent": {
"main": [
[
{
"node": "Send a message",
"type": "main",
"index": 0
}
]
]
},
"Fetch Weekly Releases (Tavily)": {
"ai_tool": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Fetch Must-Watch Movies (Tavily)": {
"ai_tool": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Fetch Weekly Box Office (Tavily)": {
"ai_tool": [
[
{
"node": "Hollywood News Research Agent",
"type": "ai_tool",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Use cases: Great for film journalists, entertainment bloggers, or movie enthusiasts who want automated weekly updates without manually checking multiple sources.
Source: https://n8n.io/workflows/6841/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
V2 (2026) available! An intelligent, fully automated news aggregation system that collects articles from multiple sources (RSS feeds + Google Search), uses AI to classify and summarize the most import
kisisel asistan. Uses toolWorkflow, toolHttpRequest, toolCalculator, toolThink. Scheduled trigger; 43 nodes.
This workflow automates end-to-end ESG (Environmental, Social, and Governance) sustainability reporting for enterprise sustainability teams, compliance officers, and green governance leads. It solves
This n8n workflow automates the process of creating and sending high-quality newsletters with images generated by a GPT image generator. It is triggered on a schedule. 1 n8n workflow (json) 1 Setup tu
This workflow automates energy portfolio governance for energy managers, sustainability teams, and policy compliance officers. It eliminates the manual effort of aggregating multi-source energy data,