
Tu SMTP, Tu Marca
Los emails vienen de tu dominio. horizOn nunca envía en tu nombre -- tú mantienes el control total sobre la entregabilidad y el branding.
Motor de Plantillas con Variables
Crea plantillas HTML reutilizables con marcadores como {{username}} o {{eventTime}}. Soporta hasta 15 idiomas.
Entrega Inmediata o Programada
Envía emails al instante o prográmalos para más tarde. Cancela emails programados en cualquier momento via API.
Creado para Eventos de Juegos
Alertas de torneos, confirmaciones de compra, nudges de inactividad, emails de bienvenida. Una llamada API activa todo el flujo.
Integracion rapida
// Unity C# - Email Sending
using HorizOn;
var horizon = new HorizonClient("YOUR_API_KEY");
// Send an immediate email to a registered player
await horizon.Email.Send(new SendEmailRequest {
UserId = userId,
TemplateSlug = "welcome",
Language = "en",
Variables = new Dictionary<string, string> {
{ "username", "PlayerOne" }
}
});
// Schedule an email for later delivery
await horizon.Email.Send(new SendEmailRequest {
UserId = userId,
TemplateSlug = "appointment_reminder",
Language = "en",
Variables = new Dictionary<string, string> {
{ "appointmentName", "Dentist" },
{ "appointmentTime", "14:00" }
},
ScheduledAt = DateTime.UtcNow.AddDays(1)
});
// Cancel a scheduled email
await horizon.Email.Cancel(emailId);# REST API - Email Sending
# Send an immediate email
curl -X POST https://eu.horizon.pm/api/v1/app/email-sending/send \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"userId": "USER_ID",
"templateSlug": "welcome",
"language": "en",
"variables": { "username": "PlayerOne" }
}'
# Schedule an email for tomorrow
curl -X POST https://eu.horizon.pm/api/v1/app/email-sending/send \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"userId": "USER_ID",
"templateSlug": "appointment_reminder",
"language": "en",
"variables": { "appointmentName": "Dentist", "appointmentTime": "14:00" },
"scheduledAt": "2026-04-12T14:00:00Z"
}'
# Cancel a scheduled email
curl -X DELETE https://eu.horizon.pm/api/v1/app/email-sending/EMAIL_ID \
-H "X-API-Key: YOUR_API_KEY"Preguntas frecuentes
Listo para integrar?
Empiece a construir con horizOn hoy. Nivel gratuito incluido.
