Fidelizador 4 · Sandbox y simulacionesSandbox & simulations

Ensaya el envío completo en un entorno seguro. Rehearse the whole send in a safe environment.

En Fidelizador 4 cuentas con un entorno de pruebas: simula tus envíos y mira cómo se comportan —entregas, rebotes, aperturas y clics— sin que ningún correo llegue a una persona real. Lo procesa el mismo sistema que despacha tus correos de verdad, así que lo que ves acá no cambia cuando envíes en serio. In Fidelizador 4 you have a test environment at hand: simulate your sends and watch how they behave —deliveries, bounces, opens and clicks— without a single email reaching a real person. It's handled by the same system that dispatches your real email, so what you see here won't change when you send for real.

Ver cómo se activaSee how to turn it on Solicitar demo →Request demo →
Disponible desde octubre 2026Available from October 2026 Incluido en todos los planesIncluded in every plan
Cómo se activaHow it turns on

No se activa. Ya está.You don't turn it on. It's already there.

No hay endpoint aparte, ni credencial de pruebas, ni bandera que levantar. Lo decide la dirección del destinatario: si termina en .sandbox, el correo se enruta al entorno de simulación. Por API o por SMTP, con la credencial de siempre.There's no separate endpoint, no test credential, no flag to raise. The recipient's address decides: if it ends in .sandbox, the email is routed to the simulation environment. Over API or SMTP, with your usual credential.

Con tu remitente y tu credencial de siempreWith your usual sender and credential
"to": ["ana@inbox.sandbox"]
ese sufijo es lo que lo manda a simulaciónthat suffix is what sends it to simulation
01

La dirección mandaThe address decides

Cualquier destinatario bajo .sandbox entra al entorno de simulación. Tu código de envío no cambia en nada.Any recipient under .sandbox enters the simulation environment. Your sending code doesn't change at all.

02

Remitente listo el día unoA sender ready on day one

Tu cuenta trae un remitente de pruebas sobre un dominio ya verificado. Pruebas el flujo completo antes de tener dominio propio.Your account comes with a test sender on an already-verified domain. You test the whole flow before you even own one.

03

Con red de seguridadWith a safety net

Si envías con ese remitente de pruebas, solo llega a destinatarios de sandbox: una dirección real escrita por error queda bloqueada.If you send with that test sender, it only reaches sandbox recipients: a real address typed by mistake is blocked.

Resultados deterministasDeterministic outcomes

El resultado lo elige el destinatario.The recipient picks the outcome.

Cada dirección de prueba lleva escrito qué debe pasarle. No esperas a que la suerte te dé un rebote: lo pides. Y el escenario se repite igual todas las veces.Each test address carries what should happen to it. You don't wait for luck to hand you a bounce: you ask for one. And the scenario repeats identically every time.

Además, el sandbox imita a los proveedores que de verdad te van a responder — casillas estilo Gmail y estilo Microsoft — así validas tu manejo de rebotes contra la respuesta que te van a dar ellos, y no contra una genérica.The sandbox also mimics the providers that will actually answer you — Gmail-style and Microsoft-style mailboxes — so you validate your bounce handling against the response they will really give you, not a generic one.

Lo que quieres que pase va escrito en la direcciónWhat you want to happen is written into the address
"to": ["ok.a1@gmail.sandbox"]
ok
se entregait gets delivered
gmail
responde como Gmailanswers like Gmail
¿Y las aperturas? Van en el mismo prefijo, repetido en cada destinatarioAnd the opens? They go in the same prefix, repeated on every recipient
"to": [
  "ok.o80c20.a1@gmail.sandbox",
  "ok.o80c20.a2@gmail.sandbox",
  "ok.o80c20.a3@gmail.sandbox",
  
  "ok.o80c20.a100@gmail.sandbox"
]
o80c20 fija las tasas: abre el 80% y hace clic el 20%. Lo único que cambia entre direcciones es el final —a1, a2…—, para que sean cien destinatarios distintos. Los cien se entregan y cada uno abre con un 80% de probabilidad, así que verás cerca de 80 aperturas: es una probabilidad por destinatario, no un reparto exacto.o80c20 sets the rates: opens 80%, clicks 20%. The only thing that changes between addresses is the tail —a1, a2…— so they are a hundred distinct recipients. All hundred get delivered and each opens with an 80% chance, so you'll see around 80 opens: it is a per-recipient probability, not an exact split.

Otras combinaciones que puedes armar: cambia el prefijo para pedir otro resultado, o el dominio para que te responda otro proveedor.Other combinations you can build: change the prefix to ask for a different outcome, or the domain so a different provider answers you.

Hay más resultados que puedes pedir — greylisting, servidor ocupado, bloqueo por reputación, límite de tamaño, timeout —, cada uno con su prefijo.There are more outcomes you can ask for — greylisting, busy server, reputation block, size limit, timeout — each with its own prefix.

Para qué se usaWhat it's for

Cuatro momentos en que sirve.Four moments where it helps.

OnboardingOnboarding

Arma tu integración y comprueba que los eventos llegan como esperas, antes de conectar tu lista real.Build your integration and confirm the events arrive as you expect, before connecting your real list.

Pruebas de regresiónRegression testing

Tu integración continua —el proceso que revisa el código en cada cambio— envía a una mezcla de destinatarios y verifica que cada uno terminó en el estado que corresponde.Your continuous integration — the process that checks the code on every change — sends to a mix of recipients and asserts each one ended in the state it should.

Reproducir un incidenteReproducing an incident

Un caso de soporte se recrea con el mismo escenario, las veces que haga falta, sin volver a escribirle a nadie.A support case gets recreated with the same scenario, as many times as needed, without writing to anyone again.

Entrenar al equipo — o al agenteTraining the team — or the agent

Alguien aprende la plataforma, o un agente de IA se calibra, sin coordinar destinatarios externos ni pedir permiso.Someone learns the platform, or an AI agent gets calibrated, without coordinating external recipients or asking permission.

También por MCPAlso over MCP

Tu agente también puede correr esto.Your agent can run this too.

Pídele "simula 100 envíos con 10% de rebotes y 60% de apertura" y arma el envío completo: sandbox_catalog le dice qué se puede simular y simulate_scenario lo ejecuta. Él escribe las direcciones; tú lees los resultados.Ask it to "simulate 100 sends with 10% bounces and 60% opens" and it builds the whole send: sandbox_catalog tells it what can be simulated and simulate_scenario runs it. It writes the addresses; you read the results.

Ver integración con agentes IA →See AI agent integration →

Prueba antes de enviar de verdad.Test before you send for real.

Te mostramos cómo dejar el sandbox corriendo en tu integración y en tus pruebas automáticas.We'll show you how to wire the sandbox into your integration and your automated tests.

Solicitar demoRequest demo

¿Prefieres partir por la integración? Mira los protocolos de operación.Rather start with the integration? See the operating protocols.