[web] support email sender customization for email notifications (#33035)

GitOrigin-RevId: 9aa298c233c1f314ef3bdb381c20692bd0d4e212
This commit is contained in:
Kristina
2026-04-27 08:06:35 +00:00
committed by Copybot
parent 4db3982c08
commit b556fd40b5
2 changed files with 9 additions and 1 deletions
@@ -97,7 +97,7 @@ async function sendEmail(options, emailType) {
metrics.inc('email')
const sendMailOptions = {
to: options.to,
from: EMAIL_SETTINGS.fromAddress || '',
from: options.from || EMAIL_SETTINGS.fromAddress || '',
subject: options.subject,
html: options.html,
text: options.text,