fix(email): set admin notification recipient to enguerrandbusiness@outlook.com

https://claude.ai/code/session_01PzA98VhLMmsHpzs7gnLHGs
This commit is contained in:
Claude
2026-02-23 07:45:20 +00:00
parent 6c33406e13
commit d1da2ba823
3 changed files with 3 additions and 3 deletions

View File

@@ -134,7 +134,7 @@ export async function POST(request: Request) {
} }
// Notification admin // Notification admin
const adminEmail = process.env.ADMIN_EMAIL || fromEmail; const adminEmail = process.env.ADMIN_EMAIL || "enguerrandbusiness@outlook.com";
try { try {
await resend.emails.send({ await resend.emails.send({
from: fromEmail, from: fromEmail,

View File

@@ -31,7 +31,7 @@ export async function POST(request: Request) {
const fromEmail = const fromEmail =
process.env.RESEND_FROM_EMAIL || "HookLab <onboarding@resend.dev>"; process.env.RESEND_FROM_EMAIL || "HookLab <onboarding@resend.dev>";
const adminEmail = process.env.ADMIN_EMAIL || fromEmail; const adminEmail = process.env.ADMIN_EMAIL || "enguerrandbusiness@outlook.com";
await resend.emails.send({ await resend.emails.send({
from: fromEmail, from: fromEmail,

View File

@@ -32,7 +32,7 @@ export async function POST(request: Request) {
const fromEmail = const fromEmail =
process.env.RESEND_FROM_EMAIL || "HookLab <onboarding@resend.dev>"; process.env.RESEND_FROM_EMAIL || "HookLab <onboarding@resend.dev>";
const adminEmail = process.env.ADMIN_EMAIL || fromEmail; const adminEmail = process.env.ADMIN_EMAIL || "enguerrandbusiness@outlook.com";
await resend.emails.send({ await resend.emails.send({
from: fromEmail, from: fromEmail,