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": "Template 5 - Virtual Account Funded",
"nodes": [
{
"id": "1",
"name": "Nomba Trigger",
"type": "n8n-nodes-base.nombaTrigger",
"typeVersion": 1,
"position": [
200,
320
],
"parameters": {
"events": [
"virtual_account_funded"
],
"verifySignature": true
}
},
{
"id": "2",
"name": "Is Virtual Account Funding",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
440,
320
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $json.event.type }}",
"operation": "equals",
"value2": "virtual_account_funded"
}
]
}
}
},
{
"id": "3",
"name": "Update Database",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
700,
260
],
"parameters": {
"method": "POST",
"url": "https://example.com/internal/payments"
}
},
{
"id": "4",
"name": "Notify Customer",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2,
"position": [
940,
260
],
"parameters": {
"fromEmail": "ops@example.com",
"toEmail": "={{ $json.raw.data.customer.email || 'customer@example.com' }}",
"subject": "Funds Received",
"text": "Your virtual account has been funded successfully."
}
}
],
"connections": {
"Nomba Trigger": {
"main": [
[
{
"node": "Is Virtual Account Funding",
"type": "main",
"index": 0
}
]
]
},
"Is Virtual Account Funding": {
"main": [
[
{
"node": "Update Database",
"type": "main",
"index": 0
}
],
[]
]
},
"Update Database": {
"main": [
[
{
"node": "Notify Customer",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Template 5 - Virtual Account Funded. Uses nombaTrigger, httpRequest, emailSend. Event-driven trigger; 4 nodes.
Source: https://github.com/Mozzicato/NOMBA-FLOW/blob/de0bf4c93db13bcf221b22b2249170b3be7a40e2/examples/templates/template-5-virtual-account-funded.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.
Overkill. Uses start, rabbitmqTrigger, httpRequest, emailSend. Event-driven trigger; 4 nodes.
chiste 1. Uses httpRequest, emailSend. Event-driven trigger; 3 nodes.
The Sora 2 API allows seamless generation of CGI ads, turning text prompts into stunning videos. This workflow automates the entire process from video generation to upload, notification, and file shar
Storyboard I2V Pipeline (17 shots) with Retry/Wait/State/Notify. Uses httpTrigger, httpRequest, emailSend. Event-driven trigger; 28 nodes.