Compare commits
No commits in common. "3fd64368a26c78c6e1afa70a70cb50ff88185391" and "144ce428f0cad1ea1c68d3e28b402d546f8d3e5b" have entirely different histories.
3fd64368a2
...
144ce428f0
|
|
@ -80,7 +80,6 @@ export async function sendEmailCf(data: Record<string, string>, to: string, type
|
|||
const apiToken = import.meta.env.CLOUDFLARE_API_TOKEN;
|
||||
const accountId = import.meta.env.CLOUDFLARE_ACCOUNT_ID;
|
||||
|
||||
try {
|
||||
const client = new Cloudflare({ apiToken });
|
||||
const { subject } = TEMPLATE_URLS[type];
|
||||
const rawHtml = await fetchTemplate(type);
|
||||
|
|
@ -100,10 +99,6 @@ export async function sendEmailCf(data: Record<string, string>, to: string, type
|
|||
console.error("Cloudflare email not delivered", response);
|
||||
throw new Error("El correo no fue entregado");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Cloudflare email failed, fallback a n8n:", error);
|
||||
await sendEmail(data, to, type);
|
||||
}
|
||||
}
|
||||
|
||||
// ═══════════════════════════════════════════════════════════════
|
||||
|
|
|
|||
Loading…
Reference in New Issue