83 lines
3.1 KiB
TypeScript
83 lines
3.1 KiB
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export const runtime = "nodejs";
|
|
|
|
export async function POST(request: Request) {
|
|
try {
|
|
const body = await request.json();
|
|
const { name, phone, metier, ville } = body as {
|
|
name?: string;
|
|
phone?: string;
|
|
metier?: string;
|
|
ville?: string;
|
|
};
|
|
|
|
if (!name || !phone || !metier || !ville) {
|
|
return NextResponse.json(
|
|
{ error: "Tous les champs sont requis." },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
if (!process.env.RESEND_API_KEY) {
|
|
return NextResponse.json(
|
|
{ error: "Service email non configuré." },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
|
|
const { Resend } = await import("resend");
|
|
const resend = new Resend(process.env.RESEND_API_KEY);
|
|
|
|
const fromEmail =
|
|
process.env.RESEND_FROM_EMAIL || "HookLab <onboarding@resend.dev>";
|
|
const adminEmail = process.env.ADMIN_EMAIL || "enguerrandbusiness@outlook.com";
|
|
|
|
await resend.emails.send({
|
|
from: fromEmail,
|
|
to: adminEmail,
|
|
subject: `Nouvelle demande d'audit - ${name} (${metier})`,
|
|
html: `
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><meta charset="utf-8"></head>
|
|
<body style="margin:0;padding:0;background:#f4f4f5;font-family:Arial,Helvetica,sans-serif;">
|
|
<div style="max-width:560px;margin:0 auto;padding:32px 16px;">
|
|
<div style="background:#ffffff;border-radius:16px;padding:32px;border:1px solid #e4e4e7;">
|
|
<h2 style="margin:0 0 24px 0;color:#111827;font-size:20px;">Nouvelle demande d'audit gratuit</h2>
|
|
<table style="width:100%;border-collapse:collapse;">
|
|
<tr>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#6b7280;font-size:14px;width:40%;">Nom</td>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#111827;font-size:14px;font-weight:600;">${name}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#6b7280;font-size:14px;">Téléphone</td>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#111827;font-size:14px;font-weight:600;">${phone}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#6b7280;font-size:14px;">Métier</td>
|
|
<td style="padding:10px 0;border-bottom:1px solid #f3f4f6;color:#111827;font-size:14px;font-weight:600;">${metier}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:10px 0;color:#6b7280;font-size:14px;">Ville / Zone</td>
|
|
<td style="padding:10px 0;color:#111827;font-size:14px;font-weight:600;">${ville}</td>
|
|
</tr>
|
|
</table>
|
|
<p style="margin:24px 0 0 0;color:#6b7280;font-size:13px;">Reçu le ${new Date().toLocaleDateString("fr-FR", { day: "2-digit", month: "long", year: "numeric", hour: "2-digit", minute: "2-digit" })}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
`,
|
|
});
|
|
|
|
return NextResponse.json({ success: true }, { status: 200 });
|
|
} catch (err) {
|
|
console.error("Erreur API contact:", err);
|
|
return NextResponse.json(
|
|
{ error: "Erreur serveur. Veuillez réessayer." },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|