completionId: cgen-e0d3e8055e274a5ba66a6cd9816dbc59
cgen-e0d3e8055e274a5ba66a6cd9816dbc59
This commit is contained in:
parent
5eacaea047
commit
dea9034802
1 changed files with 2 additions and 2 deletions
|
|
@ -4,9 +4,9 @@ const smtpHost = process.env.SMTP_HOST;
|
||||||
const smtpPort = parseInt(process.env.SMTP_PORT || "465", 10);
|
const smtpPort = parseInt(process.env.SMTP_PORT || "465", 10);
|
||||||
const smtpUser = process.env.SMTP_USER;
|
const smtpUser = process.env.SMTP_USER;
|
||||||
const smtpPassword = process.env.SMTP_PASSWORD;
|
const smtpPassword = process.env.SMTP_PASSWORD;
|
||||||
const fromEmail = process.env.SMTP_FROM_EMAIL || "no-reply@aethex.dev";
|
const fromEmail = process.env.SMTP_FROM_EMAIL || smtpUser || "support@aethex.tech";
|
||||||
const verifySupportEmail =
|
const verifySupportEmail =
|
||||||
process.env.VERIFY_SUPPORT_EMAIL ?? "support@aethex.biz";
|
process.env.VERIFY_SUPPORT_EMAIL ?? smtpUser ?? "support@aethex.tech";
|
||||||
|
|
||||||
let transporter: nodemailer.Transporter | null = null;
|
let transporter: nodemailer.Transporter | null = null;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue