Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

Employee onboarding automation (Webhook → Sheets/Notion → Gmail → Slack)

快速摘要

触发器
Webhook - New Employee Form
步骤
6
流程
Webhook - New Employee Form → Code - Normalize name/role/start date → Google Sheets - Append Employee Row → Notion - Create Onboarding Checklist Page → Gmail - Send Welcome Email → Slack - Notify #people-ops
泳道
3
集成
Gmail, Google Sheets, n8n, Notion, Slack

FlowZap 代码

intake { # Intake
n1: rectangle label:"Webhook - New Employee Form" system:"n8n"
n2: rectangle label:"Code - Normalize name/role/start date" system:"n8n"
n1.handle(right) -> n2.handle(left) [label="Form payload"]
}

records { # Records
n3: rectangle label:"Google Sheets - Append Employee Row" system:"Google Sheets"
n4: rectangle label:"Notion - Create Onboarding Checklist Page" system:"Notion"
intake.n2.handle(right) -> records.n3.handle(left) [label="Employee data"]
records.n3.handle(bottom) -> records.n4.handle(top) [label="Create checklist"]
}

notify { # Notify
n5: rectangle label:"Gmail - Send Welcome Email" system:"Gmail"
n6: rectangle label:"Slack - Notify #people-ops" system:"Slack"
records.n4.handle(right) -> notify.n5.handle(left) [label="Checklist ready"]
notify.n5.handle(right) -> notify.n6.handle(left) [label="Announce"]
}
FlowZap - Not another Diagramming tool - Employee onboarding automation (Webhook → Sheets/Notion → Gmail → Slack) | n8n 工作流示例.