remove no reply check in send email

This commit is contained in:
Milo Schwartz
2025-01-28 22:13:46 -05:00
parent 397036640e
commit f874449d36
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import logger from "@server/logger";
function createEmailClient() {
const emailConfig = config.getRawConfig().email;
if (!emailConfig || !emailConfig.no_reply) {
if (!emailConfig) {
logger.warn(
"Email SMTP configuration is missing. Emails will not be sent."
);