Loom + Gmail / Outlook
Send a Loom intro video on client invitation
When a new client is invited, send a follow-up email 30 minutes later with a Loom walkthrough of the portal. Helps non-technical clients adopt faster.
10 min setup Trigger:
client.invited mediumworks with Zapierworks with Make.com
Setup steps
- In Loom: record the walkthrough (2 minutes is plenty). Get the share URL.
- In Make / Zapier: webhook trigger.
- Add a 30-minute delay step.
- Add 'Gmail Send Email' or 'Outlook Send Mail' step. To: client.primary_email. Body: includes the Loom URL.
- In ClientNest365: subscribe a new webhook to client.invited.
Payload fields you'll use
client.nameclient.primary_email
Where to wire it in ClientNest365
Open your workspace at /app/settings/webhooks. Click + New endpoint. Paste the target URL from your automation platform (Zapier, Make, n8n) or the third-party tool's native webhook URL. Subscribe to the client.invited event. Save. Your endpoint secret is shown once at creation; copy it now if you plan to verify the HMAC signature on the receiving end.
Verifying the signature
Each webhook POST carries an X-CN-Signature header. The value is sha256=<hmac> where the HMAC is computed over the raw request body using your endpoint secret. Compare with constant-time equality. Reject mismatches.