EmailService with mock fallback when SMTP not configured. Templates: welcome, fiel-notification, payment-confirmed, payment-failed, subscription-expiring, subscription-cancelled. Uses Google Workspace SMTP (STARTTLS). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
895 B
TypeScript
15 lines
895 B
TypeScript
import { baseTemplate } from './base.js';
|
|
|
|
export function paymentFailedEmail(data: { nombre: string; amount: number; plan: string }): string {
|
|
return baseTemplate(`
|
|
<h2 style="color:#1e293b;margin:0 0 16px;">Problema con tu Pago</h2>
|
|
<p style="color:#475569;line-height:1.6;">Hola ${data.nombre},</p>
|
|
<p style="color:#475569;line-height:1.6;">No pudimos procesar tu pago. Por favor verifica tu método de pago.</p>
|
|
<div style="background-color:#fef2f2;border-radius:8px;padding:16px;margin:16px 0;border-left:4px solid #ef4444;">
|
|
<p style="margin:0;color:#334155;"><strong>Monto pendiente:</strong> $${data.amount.toLocaleString('es-MX')} MXN</p>
|
|
<p style="margin:8px 0 0;color:#334155;"><strong>Plan:</strong> ${data.plan}</p>
|
|
</div>
|
|
<p style="color:#475569;line-height:1.6;">Si necesitas ayuda, contacta a soporte respondiendo a este correo.</p>
|
|
`);
|
|
}
|