欢迎使用 FlowZap,快速、清晰、掌控的绘图应用。

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

使用我们的 n8n 可视化工具 可视化您当前的 n8n JSON

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"]
}
返回所有示例