DEV Community

Eva
Eva

Posted on

Building a Digital Product Automation System with Telegram,Make,and Notion

Running a digital product business usually starts simple.

Create a product.
Receive an order.
Send the files.
Track customers.

But as the number of customers grows,manual operations become a problem.

In this article,I will show how I built a simple automation architecture using Telegram,Make,and N otion.

The problem

A typical digital product workflow requires several manual steps:

1.Customer purchases a product
2.Order information is recorded
3.Customer receives delivery instructions
4.Creator updates customer records
5.Follow-up message are sent

Doing this manually works at the beginning,but it becomes difficult to maintain.

The architecture

The system is built around three components:

Customer Action

Telegram Bot

Webhook

Make Automation

Notion Database

Each component has a specific role.

Telegram

Used as the communication layer.

It can handle:

. welcome messages
. delivery notifications
. user interactions

Make

Used as the automation engine.

It handles:

. receiving webhook data
. processing information
. triggering actions

Notion

Used as the database layer.

It stores:

. customers
. products
. orders
. leads

Building the workflow

Step 1:Create your database structure

A simple structure:

Products Database

Customers Database

Orders Database

Leads Database

Keeping data separated makes future automation easier.

Step 2:Connect Telegram with Make

The workflow:

Telegram message

Webhook trigger

Process data

Send response

This creates a simple communication pipeline.

Step 3:Save information into Notion

When a new event happens:

. create a new customer record
. update order information
. trigger follow-up actions

Now the system can automatically maintain your database.

Lessons learned

While building this system,I found that the hardest part was not connecting APIs.

The hardest part was designing a reliable data structure.

A good automation system starts with:

. clear data models
. predictable workflows
. error handing

Without these,adding more automation only creates more complexity.

Final thoughts

Tools like Telegram,Make,and Notion are powerful individually.

But when combined properly,they can become a lightweight operating system for solo creators.

I'm continuing to improve this approach and explore how automation can help more independent builders reduce repetitive work.

Top comments (0)