We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dae1b6d commit bf9c4b4Copy full SHA for bf9c4b4
apps/webapp/app/services/email.server.ts
@@ -27,7 +27,8 @@ const alertsClient = singleton(
27
transport: buildTransportOptions(true),
28
imagesBaseUrl: env.APP_ORIGIN,
29
from: env.ALERT_FROM_EMAIL ?? "noreply@alerts.trigger.dev",
30
- replyTo: env.REPLY_TO_EMAIL ?? "help@email.trigger.dev",
+ // Fallback to `REPLY_TO_EMAIL` for backwards compat
31
+ replyTo: env.ALERT_REPLY_TO_EMAIL ?? env.REPLY_TO_EMAIL ?? "help@email.trigger.dev",
32
})
33
);
34
0 commit comments