Skip to main content

Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail

Workflow preview

Workflow preview
100%
Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

How it works? 1. Send a message or a voice note on Telegram right after the meeting. 2. n8n transcribes (if it's a voice note) and sends the t...

Best for

  • AI Summarization automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

@n8n/n8n-nodes-langchain.lmchatopenai, n8n-nodes-base.gmail, n8n-nodes-base.if, n8n-nodes-base.wait, n8n-nodes-base.telegramtrigger, n8n-nodes-base.telegram, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.code

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Baptiste Fort.

Original n8n.io source

1.1 Workflow description

Title
Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail
Workflow name
Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail

How it works?

  1. Send a message or a voice note on Telegram right after the meeting.
  2. n8n transcribes (if it's a voice note) and sends the text to GPT.
  3. GPT generates a structured and professional meeting minutes report.
  4. The report is automatically stored in Airtable.
  5. Your team is instantly notified in Slack.
  6. A formal email is sent via Gmail to the right recipients.

👉 Works for all types of meetings: client calls, team syncs, project updates… whether you type a message or send a quick voice memo.

If you need a professional n8n automation agency to build custom workflows like this, check out Vision IA's n8n automation services.


âś… Requirements

Before running this workflow, you’ll need:

  • A Telegram account with a bot configured (to send your messages/voice notes)
  • An OpenAI API key (for GPT and voice transcription)
  • An Airtable account with a base containing these fields:
    • Email
    • Subject
    • Report
  • A Slack account with the target channel for notifications
  • A Gmail account connected to n8n (OAuth2)

đź”§ Step-by-step setup

Step 1 – Telegram Trigger

  • Node: Telegram Trigger
  • Updates: message
    👉 Captures every message or voice note sent to the bot.

Step 2 – Detect text or voice

  • Node: Code (“Message or Voice ?”)
  • Expected output:
    • { type: "text", content } if message
    • { type: "voice", file_id } if voice note
      👉 Routes the workflow based on the input type.

Step 3 – IF Condition

  • Condition: {{$json.type}} == voice
    👉 Directs to the transcription branch if it’s a voice note.

Voice Branch 🎤

Step 4 – Download the voice file

  • Node: Telegram → Voice note
  • Parameter: fileId = {{$json.file_id}}

Step 5 – Wait

  • Node: Wait (2–3s)
    👉 Lets Telegram prepare the file.

Step 6 – Voice note download

  • Node: Telegram (file download)
    👉 Retrieves the audio file.

Step 7 – Transcribe to text

  • Node: OpenAI (Transcription)
  • Resource: audio
  • Operation: transcribe
    👉 Converts the voice note into plain text.

Step 8 – Short wait

👉 Ensures continuity before sending to GPT.


Text Branch ✍️

Step 9 – Normalize

  • Node: Code (“Content”)
  • Return: { text: $json.content }
    👉 Standardizes the text as if it were already a transcription.

Step 10 – Detect email

  • Node: Code (“Domain or Email detection”)
    👉 Extracts the target email (or builds a fallback [email protected]).

Step 11 – Generate meeting minutes

  • Node: Agent (“Generate Meeting Message”)
  • Prompt: specialized for “meeting minutes”
  • Model: GPT-4.1-mini
  • Output: { email, subject, body }
    👉 GPT creates a clean and structured meeting report.

Step 12 – Enforce clean JSON

  • Node: Output Parser Structured
  • JSON Example:
    json {"email": "[email protected]","subject":"Subject","body":Email"}

👉 Ensures the output is always valid JSON.

Step 13 – Cleanup / Airtable mapping

  • Node: Code
  • Return: { Email, subject, Report }

👉 Prepares the correct fields aligned with your Airtable table.

If you need help setting up advanced Airtable workflows and database automation, check out Vision IA's Airtable automation services.


Step 14 – Store in Airtable

  • Node: Airtable (Create Record)
  • Mapping:
    • Email = {{$json.Email}}
    • subject = {{$json.subject}}
    • Report = {{$json.Report}}
      👉 Archives each meeting report in your Airtable base.

Step 15 – Notify in Slack

  • Node: Slack (Send Message)
  • Channel: your team channel
  • Message: {{$json.fields.subject}}{{$json.fields.Report}}

Step 16 – Send the email

  • Node: Gmail (Send Email)
  • sendTo: {{$('Create a record').item.json.fields.Email}}
  • subject: {{$('Create a record').item.json.fields.subject}}
  • message: {{$('Create a record').item.json.fields.Report}}

Need Help Automating Your Communication Workflows?

This n8n workflow shows how powerful email automation and AI-powered documentation can be. If you want to go further with automated email campaigns, meeting follow-ups, and team communication systems, our agency specializes in building custom solutions.

👉 Explore our email automation services: Vision IA – Email Automation Agency

We help businesses automate their entire communication pipeline—from meeting notes to client follow-ups and internal notifications—all running automatically with AI assistance.

Questions about this workflow or other automation solutions? Visit Vision IA or reach out for a free consultation.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - GPT-4 Email Generator Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatOpenAi - lmChatOpenAi
Config choices
Version 1.2

Block 2 - Send Email

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 3 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 4 - Wait

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 5 - Telegram Trigger

Type / Role
n8n-nodes-base.telegramTrigger - telegramTrigger
Config choices
Version 1.2

Block 6 - Voice note

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 7 - Voice note download

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 8 - Transcription of voice notes to text

Type / Role
@n8n/n8n-nodes-langchain.openAi - openAi
Config choices
Version 1.8

Block 9 - WAIT

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 10 - Content

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - Message or Voice ?

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 12 - Generate Meeting Message

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 2.1

Block 13 - Create a record

Type / Role
n8n-nodes-base.airtable - airtable
Config choices
Version 2.1

Block 14 - Code

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Send a message

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 16 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 19 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Enforce Email JSON

Type / Role
@n8n/n8n-nodes-langchain.outputParserStructured - outputParserStructured
Config choices
Version 1.3

Block 21 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Sticky Note7

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Showing the first 24 of 29 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail
Complexity advanced
Nodes 29
Categories AI Summarization, Multimodal AI
Author Baptiste Fort
Published 19 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7582/7582.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Create meeting minutes from Telegram messages with GPT-5 to Airtable Slack Gmail do?

How it works? 1. Send a message or a voice note on Telegram right after the meeting. 2. n8n transcribes (if it's a voice note) and sends the t...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your AI Summarization, Multimodal AI use case.