Fix backup SMTP
This commit is contained in:
parent
e511ff4e22
commit
df0b3cc6de
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue