mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
Fix/password reset email UI (#12587)
* fix: updated init whitelabel settings * fix: fixed whitelabel logo, text in email
This commit is contained in:
parent
0945eb8b65
commit
5333e17136
2 changed files with 3 additions and 1 deletions
|
|
@ -18,4 +18,6 @@
|
|||
<a target="_blank" href="https://twitter.com/ToolJet">
|
||||
<img height="20" width="auto" class="social-icons social-icon-fit" alt="Company" src="cid:twitter" />
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
|
|
@ -181,7 +181,7 @@ export class EmailService implements IEmailService {
|
|||
}
|
||||
|
||||
async init(organizationId?: string | null) {
|
||||
const whiteLabelSettings = await this.emailUtilService.retrieveWhiteLabelSettings(organizationId);
|
||||
const whiteLabelSettings = await this.emailUtilService.retrieveWhiteLabelSettings(null);
|
||||
this.SMTP = await this.emailUtilService.retrieveSmtpSettings();
|
||||
this.WHITE_LABEL_TEXT = whiteLabelSettings?.white_label_text;
|
||||
this.WHITE_LABEL_LOGO = whiteLabelSettings?.white_label_logo;
|
||||
|
|
|
|||
Loading…
Reference in a new issue