feat: configurable SMTP_FROM_NAME via .env (defaults to BOHA Automation)

This commit is contained in:
BOHA
2026-03-23 12:52:21 +01:00
parent 8a453deaac
commit 9f36ad0985
2 changed files with 2 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ export async function sendMail(to: string, subject: string, html: string): Promi
try {
await transporter.sendMail({
from: `System <${from}>`,
from: `${config.email.smtpFromName} <${from}>`,
to,
subject,
html,