This workflow corresponds to n8n.io template #lindo-new-client-welcome-email — we link there as the canonical source.
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": "Send welcome email when a new Lindo client is created",
"nodes": [
{
"parameters": {
"event": "client.created"
},
"id": "trigger",
"name": "Lindo Trigger",
"type": "n8n-nodes-lindo.lindoTrigger",
"typeVersion": 1,
"position": [
250,
300
],
"credentials": {
"lindoApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"fromEmail": "hello@yourcompany.com",
"toEmail": "={{ $json.data.email }}",
"subject": "=Welcome, {{ $json.data.full_name }}!",
"text": "=Hi {{ $json.data.full_name }},\n\nWelcome! Your account has been created.\n\nYou can create up to {{ $json.data.website_limit }} website(s).\n\nBest regards,\nYour Team",
"options": {}
},
"id": "email",
"name": "Send Email",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
500,
300
],
"credentials": {
"smtp": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Lindo Trigger": {
"main": [
[
{
"node": "Send Email",
"type": "main",
"index": 0
}
]
]
}
},
"meta": {
"templateId": "lindo-new-client-welcome-email"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
lindoApismtp
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Send welcome email when a new Lindo client is created. Uses n8n-nodes-lindo, emailSend. Event-driven trigger; 2 nodes.
Source: https://github.com/lindoai/n8n-nodes-lindo/blob/c99359d0ecf74a63dda58a7e89fe628f393925c9/templates/new-client-to-email.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.
Convert Docx From Url To Pdf Using Convertapi. Uses manualTrigger, httpRequest, readWriteFile, stickyNote. Event-driven trigger; 6 nodes.
Preparing Data To Be Sent To A Service. Uses manualTrigger, stickyNote, googleSheets, n8nTrainingCustomerDatastore. Event-driven trigger; 6 nodes.
Extract Contracts to a Register. Uses n8n-nodes-iterationlayer. Event-driven trigger; 6 nodes.
📄 Description: This workflow helps you migrate customer records directly from Odoo v15 to Odoo v18 without the need for manual exports or intermediate files.
Convert Xlsx To Pdf Using Convertapi. Uses manualTrigger, readWriteFile, stickyNote, httpRequest. Event-driven trigger; 5 nodes.