🐛 Updated notification sender (#289)

This commit is contained in:
Montassar Ghanmy
2023-12-04 15:04:03 +01:00
committed by GitHub
parent c3a07dc6c9
commit cee656d456
@@ -49,7 +49,7 @@ export default class EmailPusherClass
secure: false,
};
this.transporter = nodemailer.createTransport(smtpConfig);
this.sender = this.configuration.get<string>("smtp_from", "");
this.sender = this.configuration.get<string>("sender", "");
} else {
this.transporter = null;
this.apiUrl = this.configuration.get<string>("endpoint", "");