A Make scenario that watches Typeform for new responses, creates a Notion database item, and sends a confirmation email to the respondent. A clean intake-to-record-to-acknowledgement flow.
{
"version": "1.0",
"platform": "make",
"name": "Typeform to Notion + Email",
"flow": [
{
"id": 1,
"module": "typeform:watchResponses",
"type": "trigger",
"mapper": {
"formId": "YOUR_FORM_ID"
}
},
{
"id": 2,
"module": "notion:createDatabaseItem",
"type": "action",
"mapper": {
"databaseId": "YOUR_NOTION_DB_ID",
"properties": {
"Name": "{{1.answers.name}}",
"Email": "{{1.answers.email}}",
"Message": "{{1.answers.message}}"
}
}
},
{
"id": 3,
"module": "email:sendEmail",
"type": "action",
"mapper": {
"to": "{{1.answers.email}}",
"subject": "We received your message",
"text": "Thanks {{1.answers.name}}, we'll be in touch shortly."
}
}
]
}