feat(email): always BCC shop@linumiq.com on outgoing invoice mails

This commit is contained in:
Gerhard Scheikl
2026-05-08 22:44:21 +02:00
parent 02a93b502b
commit 093db30b6c
+1
View File
@@ -94,6 +94,7 @@ export async function sendInvoiceEmail(
const info = await transporter.sendMail({ const info = await transporter.sendMail({
from: `"${fromName}" <${fromEmail}>`, from: `"${fromName}" <${fromEmail}>`,
to, to,
bcc: "shop@linumiq.com",
replyTo: settings.smtpReplyTo || undefined, replyTo: settings.smtpReplyTo || undefined,
subject, subject,
text: body.text, text: body.text,