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

@ -21,7 +21,7 @@ export async function sendEmailVerificationCode(
}),
{
to: email,
from: config.getRawConfig().email?.no_reply,
from: config.getNoReplyEmail(),
subject: "Verify your email address"
}
);