use smtp user if no no-reply set

This commit is contained in:
Milo Schwartz 2025-01-28 21:26:34 -05:00
parent a57f0ab360
commit 60110350aa
No known key found for this signature in database
6 changed files with 13 additions and 7 deletions

View file

@ -163,7 +163,7 @@ export async function resetPassword(
});
await sendEmail(ConfirmPasswordReset({ email }), {
from: config.getRawConfig().email?.no_reply,
from: config.getNoReplyEmail(),
to: email,
subject: "Password Reset Confirmation"
});