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": "Vitalis - Email Bienvenida Nuevo Centro",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "email-bienvenida",
"responseMode": "immediately",
"responseData": "allEntries"
},
"id": "node-webhook",
"name": "Webhook Bienvenida",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
240,
300
]
},
{
"parameters": {
"jsCode": "const body = $input.first().json.body ?? $input.first().json;\nconst nombre = body.nombre_admin ?? 'equipo';\nconst centro = body.nombre_centro ?? 'tu centro';\nconst email = body.email;\nconst plan = body.plan ?? 'b\u00e1sico';\n\nif (!email) throw new Error('Email requerido');\n\nconst planLabel = { basico: 'B\u00e1sico', intermedio: 'Intermedio', premium: 'Premium' }[plan] ?? plan;\n\nconst html = `<!DOCTYPE html>\n<html lang=\"es\">\n<head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width,initial-scale=1\"><title>Bienvenido a Vitalis</title></head>\n<body style=\"margin:0;padding:0;background:#f4f6f9;font-family:Arial,sans-serif;\">\n<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" style=\"background:#f4f6f9;padding:32px 0;\">\n <tr><td align=\"center\">\n <table width=\"560\" cellpadding=\"0\" cellspacing=\"0\" style=\"background:#ffffff;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.08);\">\n <!-- Header -->\n <tr>\n <td style=\"background:#080E1A;padding:32px;text-align:center;\">\n <svg width=\"44\" height=\"44\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M14 66 Q28 44 40 32 Q53 18 68 16\" stroke=\"#234A73\" stroke-width=\"9\" stroke-linecap=\"round\" fill=\"none\"/>\n <path d=\"M14 50 Q30 32 44 22 Q56 13 70 11\" stroke=\"#21C8C0\" stroke-width=\"6\" stroke-linecap=\"round\" fill=\"none\" opacity=\"0.9\"/>\n </svg>\n <p style=\"color:#ffffff;font-size:22px;font-weight:700;letter-spacing:0.12em;margin:12px 0 0;\">VITALIS</p>\n <p style=\"color:#21C8C0;font-size:12px;margin:4px 0 0;\">Gesti\u00f3n inteligente de centros de salud</p>\n </td>\n </tr>\n <!-- Body -->\n <tr>\n <td style=\"padding:40px 36px;\">\n <h1 style=\"color:#080E1A;font-size:24px;margin:0 0 8px;\">\u00a1Bienvenido, ${nombre}!</h1>\n <p style=\"color:#555;font-size:15px;line-height:1.6;margin:0 0 24px;\">Tu centro <strong>${centro}</strong> ya est\u00e1 activo en Vitalis con el plan <strong>${planLabel}</strong>. Ten\u00e9s <strong>7 d\u00edas de prueba gratuita</strong> para explorar todo el sistema.</p>\n \n <div style=\"background:#f0fafa;border-left:4px solid #21C8C0;border-radius:0 8px 8px 0;padding:16px 20px;margin:0 0 28px;\">\n <p style=\"color:#234A73;font-size:14px;font-weight:600;margin:0 0 12px;\">Primeros pasos recomendados:</p>\n <ol style=\"color:#555;font-size:14px;line-height:2;margin:0;padding-left:20px;\">\n <li>Configur\u00e1 tu agenda y horarios</li>\n <li>Agreg\u00e1 tus profesionales</li>\n <li>Carg\u00e1 tus servicios y precios</li>\n <li>Compart\u00ed el link de reservas con tus pacientes</li>\n </ol>\n </div>\n\n <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td align=\"center\">\n <a href=\"https://agendavitalis.app/dashboard\" style=\"display:inline-block;background:#21C8C0;color:#ffffff;text-decoration:none;font-size:15px;font-weight:600;padding:14px 32px;border-radius:8px;\">Ir al dashboard \u2192</a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <!-- Footer -->\n <tr>\n <td style=\"background:#f4f6f9;padding:20px 36px;text-align:center;border-top:1px solid #e8ecf0;\">\n <p style=\"color:#999;font-size:12px;margin:0;\">Vitalis \u00b7 agendavitalis.app \u00b7 Este es un email autom\u00e1tico, no respondas a este mensaje.</p>\n </td>\n </tr>\n </table>\n </td></tr>\n</table>\n</body></html>`;\n\nreturn [{ json: { to: email, subject: `\u00a1Bienvenido a Vitalis, ${nombre}!`, html, nombre, centro, plan } }];"
},
"id": "node-armar-email",
"name": "Armar Email",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
480,
300
]
},
{
"parameters": {
"fromEmail": "noreply@agendavitalis.app",
"toEmail": "={{ $json.to }}",
"subject": "={{ $json.subject }}",
"emailFormat": "html",
"html": "={{ $json.html }}"
},
"id": "node-smtp",
"name": "Enviar Email SMTP",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 2.1,
"position": [
720,
300
],
"credentials": {
"smtp": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook Bienvenida": {
"main": [
[
{
"node": "Armar Email",
"type": "main",
"index": 0
}
]
]
},
"Armar Email": {
"main": [
[
{
"node": "Enviar Email SMTP",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"executionOrder": "v1"
}
}
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.
smtp
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Vitalis - Email Bienvenida Nuevo Centro. Uses emailSend. Webhook trigger; 3 nodes.
Source: https://github.com/gkovalek/agendavitalis/blob/main/n8n/workflow-email-bienvenida.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.
This workflow receives new consult bookings via webhook (Calendly v2 or a generic scheduling tool), generates timed confirmation and reminder messages, runs each SMS through a separate compliance work
This workflow uses webhooks, Twilio SMS, SMTP email, and a Bar-Compliance Guardrail sub-workflow to request client ratings 48 hours after matters close. It routes replies so 4–5 star clients get a Goo
This workflow automates flight price comparison across multiple booking platforms (Kayak, Skyscanner, Expedia, Google Flights). It accepts natural language queries, extracts flight details using NLP,
Automate the tracking of customer subscription expiry dates, create renewal tasks in ClickUp, and dispatch friendly email reminders before the due date. The workflow listens for incoming subscription
This workflow receives missed-call webhooks from Twilio or CallRail, normalizes call details, and instantly sends a compliant text-back via Twilio when allowed, then emails your firm a delivery-status