Fix backup SMTP

This commit is contained in:
Rory Powell 2021-10-04 15:58:05 +01:00
parent e511ff4e22
commit df0b3cc6de
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,7 @@ async function getSmtpConfiguration(db, workspaceId = null, automation) {
params.workspace = workspaceId
}
const customConfig = getScopedConfig(db, params)
const customConfig = await getScopedConfig(db, params)
if (customConfig) {
return customConfig
@ -125,6 +125,7 @@ async function getSmtpConfiguration(db, workspaceId = null, automation) {
port: env.SMTP_PORT,
host: env.SMTP_HOST,
secure: false,
from: env.SMTP_FROM_ADDRESS,
auth: {
user: env.SMTP_USER,
pass: env.SMTP_PASSWORD,