Compare commits

..

No commits in common. "99f870808b7908c1c2dfe5243b80945864a87c7c" and "0e35531ec713ee925a2ec6343476ba0964d009cf" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

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