🔓 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

Gmail to Telegram, AI summaries you actually read

Lisa Granqvist Partner Workflow Automation Expert

Your inbox keeps growing, but your attention doesn’t. You open Gmail “just to check,” then lose 20 minutes skimming threads, promos, and long replies that could’ve been two sentences.

This Gmail Telegram summaries automation hits solopreneurs hard. Support leads feel it too, and busy operators who live in Telegram all day are right there with you. The payoff is simple: you get the point of every new email without switching apps.

Below, you’ll see exactly how the workflow turns new Gmail messages into clear Telegram summaries using OpenAI, what you need to run it, and where teams usually customize it.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Gmail to Telegram, AI summaries you actually read

The Problem: Your Inbox Steals Focus in Small Bites

Email overload usually isn’t one giant crisis. It’s the drip. New message notifications pull you out of deep work, and even “quick checks” turn into scrolling, searching for context, and opening threads you don’t need right now. Then comes the mental tax: you’re trying to remember what matters, who needs a reply, and what can wait, all while new messages keep landing. Miss one important update and you pay for it later with apologies, rush work, or a dropped opportunity.

The friction compounds. Here’s where it breaks down in real life.

  • You end up opening Gmail dozens of times a day, even when only a few emails actually matter.
  • Long threads bury the “one important line,” so you read more than you need just to find the point.
  • Important messages arrive while you’re in meetings or on the move, and they get forgotten until it’s too late.
  • Skimming on your phone is slow and annoying, so you put it off and the backlog grows.

The Solution: New Gmail Emails Summarized to Telegram

This workflow watches your Gmail inbox for new emails, pulls out the parts you actually care about (sender, subject, and message body), and sends that content to an AI agent powered by an OpenAI chat model. Instead of dumping raw text into your chat, the agent rewrites it into a friendly, casual summary that’s easy to scan on a phone. You can also choose the summary language, so your Telegram alerts match how you work day-to-day. Finally, the workflow sends the finished summary straight to your Telegram chat within seconds, so you stay informed without living inside Gmail.

The workflow starts when a new email hits your inbox. Then n8n maps the email fields and applies your language setting before the AI agent generates a clean summary. Telegram receives the final message, ready to read like a human wrote it.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you get about 40 meaningful emails a day (client messages, support, invoices, and a few newsletters). Manually, if you spend even 2 minutes opening, skimming, and deciding what to do, that’s roughly 80 minutes daily. With this workflow, you skim the Telegram summaries in maybe 10 seconds each, so you’re closer to 10 minutes total, plus you only open Gmail for the handful that need action. That’s about an hour back on a normal day.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Gmail to detect new incoming messages
  • Telegram to receive summaries on your phone
  • OpenAI API key (get it from the OpenAI dashboard)

Skill level: Beginner. You’ll connect accounts, paste a chat ID, and adjust a few text fields.

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

How It Works

A new Gmail email arrives. The workflow’s Gmail trigger detects the message as it lands, so you don’t need to forward anything or label messages manually.

The workflow prepares the important fields. n8n maps sender, subject, and the email body into a clean input the AI can understand, which prevents the summary from turning into a messy wall of text.

OpenAI generates a summary in your preferred language. A “define summary language” setting is applied, then the AI agent creates a friendly, casual summary that’s meant to be scanned quickly.

Telegram receives the final summary. The workflow posts to your Telegram chat ID, so the useful version of the email shows up where you already pay attention.

You can easily modify which emails get summarized to match your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Gmail Trigger

Set up the workflow to start whenever a new email arrives in Gmail.

  1. Add and open New Email Trigger.
  2. Set Simple to false.
  3. Confirm Poll Times includes everyMinute to check for new emails frequently.
  4. Credential Required: Connect your gmailOAuth2 credentials.
  5. Connect New Email Trigger to Define Summary Language.

Step 2: Connect Gmail Data Mapping

Define the summary language and map key email fields for the agent to use.

  1. Open Define Summary Language and set the summary_language assignment value to english.
  2. Enable Include Other Fields by setting it to true.
  3. Connect Define Summary Language to Map Agent Inputs.
  4. In Map Agent Inputs, create the following assignments:
  5. Set summary_language to {{ $json.summary_language }}.
  6. Set from to {{ $json.from?.text || $json.from?.value?.[0]?.address || 'Unknown sender' }}.
  7. Set subject to {{ $json.subject }}.
  8. Set message to {{ $json.html || $json.text || 'No message content available' }}.
  9. Connect Map Agent Inputs to Email Summary Agent.

Step 3: Set Up the AI Summary Agent

Configure the summarization prompt and connect the OpenAI model for natural-language output.

  1. Open Email Summary Agent and set Prompt Type to define.
  2. Set Text to Summarize the following email in this language: {{ $json.summary_language }} From: {{ $json.from }} Subject: {{ $json.subject }} {{ $json.message }}.
  3. Keep the System Message as provided to ensure a short, casual summary.
  4. Verify OpenAI Chat Model is connected as the language model for Email Summary Agent.
  5. Credential Required: Connect your openAiApi credentials in OpenAI Chat Model (credentials are added on the model node, not the agent).
  6. Set Model in OpenAI Chat Model to gpt-4o-mini.

Step 4: Configure Telegram Output

Send the generated summary to Telegram as the final delivery step.

  1. Open Telegram Summary Dispatch and set Text to {{ $json.output }}.
  2. Set Chat ID to [YOUR_ID].
  3. Under Additional Fields, set Parse Mode to Markdown and Append Attribution to false.
  4. Credential Required: Connect your telegramApi credentials.
  5. Ensure Email Summary Agent connects directly to Telegram Summary Dispatch.

Step 5: Test and Activate Your Workflow

Validate the end-to-end flow and activate the automation for real-time use.

  1. Click Execute Workflow and send a test email to the connected Gmail account.
  2. Confirm the execution flows from New Email TriggerDefine Summary LanguageMap Agent InputsEmail Summary AgentTelegram Summary Dispatch.
  3. Verify a formatted summary appears in your Telegram chat with the correct language and sender details.
  4. Turn on the workflow using the Active toggle to enable production polling.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Gmail credentials can expire or need specific permissions. If things break, check your n8n Credentials page and the connected Google account security settings first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this Gmail Telegram summaries automation?

About 20 minutes if your Gmail, Telegram, and OpenAI accounts are ready.

Do I need coding skills to automate Gmail Telegram summaries?

No coding required. You’ll connect accounts, paste your Telegram chat ID, and adjust a couple of text fields.

Is n8n free to use for this Gmail Telegram summaries 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 OpenAI API costs (usually a few cents per day for typical email volume).

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 Gmail Telegram summaries workflow for newsletters only?

Yes, and it’s a common tweak. Add a filter right after the Gmail trigger so only matching senders or subjects continue (like “newsletter” labels, specific domains, or keywords). You can also adjust the “Define Summary Language” setting and tweak the system prompt in the Email Summary Agent to make summaries shorter, more formal, or more action-focused.

Why is my Gmail connection failing in this workflow?

Most of the time it’s expired Google authorization or the wrong Gmail account connected. Reconnect the Gmail credential in n8n, then confirm the trigger is pointed at the inbox you actually use. If it still fails, check whether your Google Workspace admin policies restrict third-party access, and watch for rate limits if you’re pulling lots of messages at once.

How many emails can this Gmail Telegram summaries automation handle?

Plenty for normal daily use, and you can scale it.

Is this Gmail Telegram summaries automation better than using Zapier or Make?

Often, yes, if you care about flexibility and cost as volume grows. n8n is comfortable with multi-step logic (mapping fields, prompting an AI agent, formatting output) without charging extra for every branch, and you can self-host if you want unlimited executions. Zapier or Make can still be great for quick two-step zaps, frankly. If you’re unsure, Talk to an automation expert and describe your email volume and what “good summaries” look like for you.

Once this is running, your inbox stops being a place you “check” and becomes a stream of quick decisions. The workflow handles the repetitive reading so you can get back to work.

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