fix: add sending form data

This commit is contained in:
2025-06-11 13:40:10 +03:00
parent 3fd44fba14
commit 53f214ba28
11 changed files with 121 additions and 27 deletions

View File

@@ -0,0 +1,7 @@
export const CORE = {
MAIL_USER: process.env.MAIL_USER,
MAIL_PASS: process.env.MAIL_PASS,
MAIL_FROM: process.env.MAIL_FROM,
MAIL_TO: process.env.MAIL_TO,
MAIL_SECURE_KEY: process.env.NEXT_PUBLIC_MAIL_SECURE_KEY,
} as const;