fixed wrong env variable

This commit is contained in:
Ulf Gebhardt 2021-06-08 11:50:34 +02:00
parent e4d1a25990
commit 7da0ba1f51
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -41,7 +41,7 @@ const smtp = {
SMTP_HOST: env.SMTP_HOST,
SMTP_PORT: env.SMTP_PORT,
SMTP_IGNORE_TLS: env.SMTP_IGNORE_TLS === 'true' || true,
SMTP_SECURE: env.SMTP_IGNORE_TLS === 'true' || false,
SMTP_SECURE: env.SMTP_SECURE === 'true',
SMTP_USERNAME: env.SMTP_USERNAME,
SMTP_PASSWORD: env.SMTP_PASSWORD,
}