Browse Source

Making sure auth section of form can always be filled in.

pull/4023/head
mike12345567 5 years ago
parent
commit
2ce312b5b0
  1. 8
      packages/builder/src/pages/builder/portal/manage/email/index.svelte

8
packages/builder/src/pages/builder/portal/manage/email/index.svelte

@ -75,9 +75,6 @@
type: ConfigTypes.SMTP,
config: {
secure: true,
auth: {
type: "login",
},
},
}
} else {
@ -85,6 +82,11 @@
}
loading = false
requireAuth = smtpConfig.config.auth != null
// always attach the auth for the forms purpose -
// this will be removed later if required
smtpConfig.config.auth = {
type: "login",
}
}
fetchSmtp()

Loading…
Cancel
Save