From cee656d456ef90b3d97012f48d0092e591402bf0 Mon Sep 17 00:00:00 2001 From: Montassar Ghanmy Date: Mon, 4 Dec 2023 15:04:03 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Updated=20notification=20sender?= =?UTF-8?q?=20(#289)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../node/src/core/platform/services/email-pusher/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts b/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts index bae15102..65c3031f 100644 --- a/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts +++ b/tdrive/backend/node/src/core/platform/services/email-pusher/index.ts @@ -49,7 +49,7 @@ export default class EmailPusherClass secure: false, }; this.transporter = nodemailer.createTransport(smtpConfig); - this.sender = this.configuration.get("smtp_from", ""); + this.sender = this.configuration.get("sender", ""); } else { this.transporter = null; this.apiUrl = this.configuration.get("endpoint", "");