MØNTAN1ACADEMY MØNTAN1
[ SECTION 10 :: PART III :: SHIP IT ]

Automations and Workflows.

If you do it twice, automate it. Wire apps together with webhooks and put AI steps in the middle.

Time ~60 min Tools Make.com Cost $0
Tools Make.com

You will learn

Automation
Trigger webhook fires
Process Make.com steps
AI step summarize
Action send the digest
Lesson 1 of 4

Thinking in Automations

Automations are workflows that run without you touching them. Something happens (a trigger), conditions are checked, and actions run automatically. The most powerful ones run while you're asleep.

Every automation has three parts
Trigger
"When X happens..."
Condition
"...if Y is true..."
Action
"...do Z"
Real examples

"When a new row appears in Airtable (trigger) → if the Status field is 'New' (condition) → send me an email summary (action)." Or: "Every Monday at 9am (trigger) → pull last week's Airtable rows → send a digest email."

Lesson 2 of 4

Build Automations with Make.com

Make.com (formerly Integromat) is a visual automation builder. You drag and drop "modules" and connect them. It has pre-built connectors for hundreds of apps :: Gmail, Airtable, Slack, Notion, and more.

1

Create a free Make.com account

Go to make.com → sign up → New Scenario. A "scenario" is Make's word for an automation workflow.

2

Add a trigger module

Click the empty circle → Search for "Airtable" → choose "Watch Records." Connect your Airtable account and select your base and table.

3

Add an action module

Click the + button after your trigger → search "Gmail" → choose "Send an Email." Fill in the recipient, subject, and body :: using data from your trigger.

4

Turn it on and test it

Click Run Once to test. Add a row to Airtable. Watch Make process it. Check your email.

Lesson 3 of 4

Webhooks: How Apps Talk in Real Time

A webhook is a URL that you give to one app so it can notify another app the instant something happens :: no polling, no waiting. "Call this URL when a payment goes through." The other app receives the call and reacts immediately.

Webhook flow
App A
Something happens
HTTP POST
Sends data to URL
Make.com
Receives & reacts
Action Fires
Instantly
Lesson 4 of 4

Adding AI Steps to Automations

Make.com has a Claude/OpenAI module. You can add an AI step to any automation: summarize the incoming data, classify it, draft a reply, generate content. This is where automations get seriously powerful.

Example: AI-enhanced email digest

Trigger: every Monday 9am → Get last week's Airtable rows → Send all rows to Claude with prompt "Summarize these submissions in 5 bullet points, highlight any urgent ones" → Send Claude's summary as an email. You built an AI assistant for yourself.

Section 10 Project

Automated Email Digest Pipeline

Build This

A Make.com automation that collects form data and emails you a daily summary

  • Submissions from your Section 9 form save to Airtable
  • Make.com scenario runs every 24 hours
  • Pulls all new Airtable rows from the last day
  • Sends the data through Claude AI to generate a summary
  • Emails you the AI-written summary