This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
api_correos/templates/email_body.html
T
2025-11-03 22:28:54 +01:00

25 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Notificación automática</title>
<style>
body { font-family: Arial, sans-serif; background-color: #f6f8fa; color: #1f2933; }
.card { max-width: 520px; margin: 2rem auto; padding: 1.5rem 2rem; background: #ffffff; border-radius: 12px; box-shadow: 0 6px 24px rgba(31, 41, 51, 0.1); }
h1 { margin-top: 0; color: #1d4ed8; }
p { line-height: 1.5; }
.cta { display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem; background: #1d4ed8; color: #ffffff; text-decoration: none; border-radius: 8px; }
.footer { margin-top: 2rem; font-size: 0.85rem; color: #6b7280; }
</style>
</head>
<body>
<div class="card">
<h1>Hola 👋</h1>
<p>Este correo fue enviado automáticamente a través del servidor SMTP de Brevo.</p>
<p>Puedes personalizar esta plantilla HTML a tu gusto para incluir métricas, reportes o cualquier contenido dinámico.</p>
<a class="cta" href="https://www.brevo.com" target="_blank" rel="noopener">Verificar envío</a>
<p class="footer">Si recibiste este correo por error, ignóralo. No respondas a este mensaje.</p>
</div>
</body>
</html>