Fidelizador · ProductosProducts

Email transaccional, por SMTP, API REST y MCP. Transactional email, over SMTP, REST API and MCP.

El motor de envío de Fidelizador, disponible hoy: despacha por SMTP, intégralo con la API REST para envío y administración, o conéctalo a tus agentes con MCP nativo. Entregabilidad y trazabilidad en cada mensaje. Fidelizador's sending engine, available today: dispatch over SMTP, integrate with the REST API for sending and administration, or connect your agents with native MCP. Deliverability and traceability on every message.

Disponible hoy: Transaccional · SMTP · API REST · MCPAvailable today: Transactional · SMTP · REST API · MCP Pronto: Automation 2.0 con IASoon: Automation 2.0 with AI
01 / Transaccional

Email Transaccional.Transactional Email.

Confirmaciones, OTPs, estados de cuenta, facturas, contraseñas y mensajes críticos. Despacho por SMTP o API, IPs de alto rendimiento, envío de adjuntos y trazabilidad mensaje a mensaje.Confirmations, OTPs, statements, invoices, passwords and critical messages. SMTP or API dispatch, high-performance IPs, attachment delivery and per-message traceability.

99,9% uptime

Objetivo de disponibilidad mensual del servicio, con monitoreo de incidentes en tiempo real.Monthly service availability target, with real-time incident monitoring.

Documentos AdjuntosAttached documents

Maximiza la llegada al inbox de tus documentos PDF, tales como boletas, facturas, notificaciones normativas, entre otras.Maximize inbox placement for your PDF documents — receipts, invoices, regulatory notifications and more.

IPs de alto rendimientoHigh-performance IPs

Separadas del tráfico marketing. Disponemos de IPs exclusivas para el tráfico crítico que no puede esperar.Separated from marketing traffic. We keep exclusive IPs for critical traffic that can't wait.

Trazabilidad por mensajePer-message traceability

Timeline completo: enviado → entregado → abierto → click → respuesta SMTP cruda.Full timeline: sent → delivered → opened → click → raw SMTP response.

Envíos inteligentesSmart sending

Diferenciados por respuesta SMTP. Reintento con back-off y rotación de IP cuando corresponde.Differentiated by SMTP response. Back-off retries and IP rotation when needed.

AuditableAudit-ready

Cumple Ley 21.719 y está certificado ISO 27001. Logs retenidos acorde a tus necesidades normativas y regulatorias.Complies with Law 21,719 and is ISO 27001 certified. Logs retained according to your regulatory and compliance needs.

Fidelizador INSTANCIA mi-empresa VF
Seguimiento de Correo
Entregado 540 ms Aperturas: 1 Clicks: 0
Destinatario: [email protected]
Asunto: Prueba MCP · Envío: hoy 16:02:54
Timeline del Tránsito
Recibido · 16:02:53
Recibido / En proceso
En cola · 16:02:54
Procesado / En cola (postfix)
Enviado · 16:02:54
250 2.0.0 Ok: queued as 4gbtqL2qdTz1D
Abierto · 16:02:59
Correo abierto (1 vez)
02 / API + MCP

API y administración MCP con tu agente IA.API and MCP administration with your AI agent.

Una sola API para despachar y administrar la plataforma: plantillas, dominios, usuarios y reportes. Webhooks firmados y un servidor MCP nativo para que tus agentes operen con las mismas herramientas que tu equipo.One API to dispatch and administer the platform: templates, domains, users and reports. Signed webhooks and a native MCP server so your agents operate with the same tools as your team.

send_mail.py
# Enviar un email — POST /v1/integration/mails/send
import os, requests

API_KEY  = os.environ["API_KEY"]          # scope: mail:send
BASE_URL = "https://cl1api.fidelizador.com"

resp = requests.post(
    f"{BASE_URL}/v1/integration/mails/send",
    headers={
        "Authorization": f"Bearer {API_KEY}",
        "X-Instance-Slug": "mi-empresa",
        "Content-Type": "application/json",
    },
    json={
        "sender_email": "[email protected]",
        "to": [{"email": "[email protected]", "name": "Ana"}],
        "subject": "Confirmación de pedido",
        "html": "<p>Tu pedido va en camino.</p>",
    },
    timeout=10,
)
resp.raise_for_status()
print(resp.json()["message_id"])
// Enviar un email — POST /v1/integration/mails/send
const API_KEY  = process.env.API_KEY;        // scope: mail:send
const BASE_URL = "https://cl1api.fidelizador.com";

const resp = await fetch(`${BASE_URL}/v1/integration/mails/send`, {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
    "X-Instance-Slug": "mi-empresa",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    sender_email: "[email protected]",
    to: [{ email: "[email protected]", name: "Ana" }],
    subject: "Confirmación de pedido",
    html: "<p>Tu pedido va en camino.</p>",
  }),
});
if (!resp.ok) throw new Error(`${resp.status} ${await resp.text()}`);
const { message_id } = await resp.json();
console.log(message_id);
<?php
// Enviar un email — POST /v1/integration/mails/send
$apiKey  = getenv("API_KEY");           // scope: mail:send
$baseUrl = "https://cl1api.fidelizador.com";

$payload = json_encode([
    "sender_email" => "[email protected]",
    "to"           => [["email" => "[email protected]", "name" => "Ana"]],
    "subject"      => "Confirmación de pedido",
    "html"         => "<p>Tu pedido va en camino.</p>",
]);

$ch = curl_init("$baseUrl/v1/integration/mails/send");
curl_setopt_array($ch, [
    CURLOPT_POST           => true,
    CURLOPT_POSTFIELDS     => $payload,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HTTPHEADER     => [
        "Authorization: Bearer $apiKey",
        "X-Instance-Slug: mi-empresa",
        "Content-Type: application/json",
    ],
]);
$response = curl_exec($ch);
curl_close($ch);

$data = json_decode($response, true);
echo $data["message_id"];
# Enviar un email — POST /v1/integration/mails/send
curl -X POST https://cl1api.fidelizador.com/v1/integration/mails/send \
  -H "Authorization: Bearer $API_KEY" \
  -H "X-Instance-Slug: mi-empresa" \
  -H "Content-Type: application/json" \
  -d '{
    "sender_email": "[email protected]",
    "to": [{"email": "[email protected]", "name": "Ana"}],
    "subject": "Confirmación de pedido",
    "html": "<p>Tu pedido va en camino.</p>"
  }'
200 OK540 msmessage_id: 019eb847-cd14…
IncluidoIncluded
  • REST documentada (OpenAPI 3)Documented REST (OpenAPI 3)
  • Administración completa: plantillas, dominios, usuarios y reportesFull administration: templates, domains, users and reports
  • Servidor MCP nativo, con scopes por agenteNative MCP server, with per-agent scopes
  • Webhooks firmados (HMAC)Signed webhooks (HMAC)

Un motor. Tres interfaces.One engine. Three interfaces.

SMTP API REST MCP
Ideal paraBest forApps y sistemas existentesExisting apps & systemsIntegraciones a medidaCustom integrationsAgentes IAAI agents
Despacho de mensajesMessage dispatch
Administración de la plataformaPlatform administration
AutenticaciónAuthenticationCredenciales + STARTTLSAPI keys · OAuth 2.0Scopes por agentePer-agent scopes
Trazabilidad por mensajePer-message traceability
Guardrails y aprobación humanaGuardrails & human approval
03 / Automation 2.0 ProntoSoon

Automation 2.0.

La reescritura de nuestro motor de workflows, nativa del nuevo stack. Esta vez con IA en el medio: un agente dentro del flujo que decide contenido, canal y momento por contacto — bajo tus reglas y guardrails.The rewrite of our workflow engine, native to the new stack. This time with AI in the middle: an agent inside the flow deciding content, channel and timing per contact — under your rules and guardrails.

IA in the middleAI in the middle

Un nodo agente entre el trigger y la acción: redacta el mensaje, elige la variante y decide el mejor canal y horario por contacto.An agent node between trigger and action: it writes the message, picks the variant and decides the best channel and timing per contact.

Constructor visual 2.0Visual builder 2.0

El lienzo de siempre, reconstruido sobre el motor transaccional: misma trazabilidad, mismos guardrails, cero migraciones.The same canvas, rebuilt on the transactional engine: same traceability, same guardrails, zero migrations.

Multicanal con A/BMultichannel with A/B

Email, SMS y push en el mismo flujo, con A/B en cualquier nodo y ganador automático por la métrica que elijas.Email, SMS and push in one flow, with A/B at any node and an automatic winner by the metric you choose.

Pronto · En construcciónSoon · Under construction
Mensaje entranteIncoming message
Trigger de mensajeMessage trigger
Trigger de mensajeMessage trigger
Sin ejecutarNot run
AgenteAgent
Triage IA
agent
1 campo1 field1
urgenteurgent
normalnormal
errorerror
2 rutas2 routes
tools
Pregunta al usuarioAsk the user
Pedir aclaración al usu…Ask user to clarify…
ask_input
RespuestaResponse
Responder urgenteReply — urgent
Urgente: {{ node.103.rep…Urgent: {{ node.103.rep…
Sin ejecutarNot run
SlackSlack
Escalar a soporteEscalate to support
integration
Sin ejecutarNot run
RespuestaResponse
Responder normalReply — normal
{{ node.103.reply }}
Sin ejecutarNot run
FidelizadorFidelizador
Responder por correoReply by email
integration
Sin ejecutarNot run
Avísame cuando esté disponibleNotify me when it ships Los clientes del transaccional tendrán acceso anticipado.Transactional customers get early access.

Tu siguiente envío, hecho con inteligencia.Your next send, done with intelligence.

Te conectamos con un especialista de implementación. 30 minutos para entender tu caso, no para venderte.We'll connect you with an implementation specialist. 30 minutes to understand your case, not to sell.

Hablar con ventasTalk to sales

Soporte en horario LATAM.Support on LATAM hours.