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 4dcd770 commit 98946c2Copy full SHA for 98946c2
apps/webapp/app/services/email.server.ts
@@ -51,7 +51,7 @@ function buildTransportOptions(alerts?: boolean): MailTransportOptions {
51
config: {
52
host: alerts ? env.ALERT_SMTP_HOST : env.SMTP_HOST,
53
port: alerts ? env.ALERT_SMTP_PORT : env.SMTP_PORT,
54
- secure: alerts ? env.ALERT_SMTP_SECURE : env.ALERT_SMTP_SECURE,
+ secure: alerts ? env.ALERT_SMTP_SECURE : env.SMTP_SECURE,
55
auth: {
56
user: alerts ? env.ALERT_SMTP_USER : env.SMTP_USER,
57
pass: alerts ? env.ALERT_SMTP_PASSWORD : env.SMTP_PASSWORD
0 commit comments