create_form #48

Merged
esteban merged 42 commits from create_form into main 2026-07-28 11:50:56 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 99f870808b - Show all commits

View File

@ -66,7 +66,7 @@ export const POST: APIRoute = async ({ request }) => {
} }
const emailApiKey = import.meta.env.EMAIL_API_KEY; const emailApiKey = import.meta.env.EMAIL_API_KEY;
const emailResponse = await fetch("http://155.138.215.11:3050/email/send", { const emailResponse = await fetch("https://flows2.carpa.com/webhook/email/send", {
method: "POST", method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
@ -78,6 +78,7 @@ export const POST: APIRoute = async ({ request }) => {
nombre, nombre,
email, email,
mensaje, mensaje,
senderName : "Centro del Reino de Paz y Justicia",
}, },
}), }),
}); });