This workflow follows the Emailsend → HTTP Request recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Whop Member Events",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "whop-webhook"
},
"name": "Whop Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "http://localhost:8000/whop/webhook",
"method": "POST",
"bodyParametersUi": {
"parameter": [
{
"name": "event",
"value": "={{ $json.body.event || 'member.created' }}"
},
{
"name": "email",
"value": "={{ $json.body.email }}"
},
{
"name": "name",
"value": "={{ $json.body.name }}"
},
{
"name": "plan",
"value": "={{ $json.body.plan }}"
},
{
"name": "whop_id",
"value": "={{ $json.body.whop_id }}"
}
]
},
"options": {}
},
"name": "Upsert Member (local store)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
470,
300
]
},
{
"parameters": {
"fromEmail": "hello@edvisingu.com",
"toEmail": "={{ $json.body.email }}",
"subject": "Welcome to EdVisingU!",
"text": "Hi {{ $json.body.name }},\n\nWelcome to the EdVisingU community. We're excited to help you on your education journey.\n\nBest,\nThe EdVisingU Team"
},
"name": "Welcome Email",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
690,
300
]
}
],
"connections": {
"Whop Webhook": {
"main": [
[
{
"node": "Upsert Member (local store)",
"type": "main",
"index": 0
}
]
]
},
"Upsert Member (local store)": {
"main": [
[
{
"node": "Welcome Email",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Whop Member Events. Uses httpRequest, emailSend. Webhook trigger; 3 nodes.
Source: https://github.com/hamza-paracha/edvisingu/blob/7865097155bdfdbfe32ec90d04f5ea1cbdf7de05/workflows/whop-events.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
User Onboarding Workflow. Uses httpRequest, emailSend. Webhook trigger; 7 nodes.
Golden Sample: webhook → http → transform → respond (+error path). Uses httpRequest, errorTrigger, emailSend. Webhook trigger; 7 nodes.
Invoice Generation. Uses httpRequest, emailSend. Webhook trigger; 6 nodes.
New Contact Onboarding Workflow. Uses emailSend, todoist, httpRequest. Webhook trigger; 6 nodes.
03.08 Automated Freight Audit & Payment. Uses emailSend, httpRequest. Webhook trigger; 5 nodes.