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", "");