Use link to png logo in emails

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-10-15 18:13:48 +02:00
parent 740a361ba8
commit 87ac7485f3
8 changed files with 37 additions and 35 deletions

View File

@@ -191,6 +191,7 @@ func (s Service) ForgetPassword(
}
subject, textBody, htmlBody, err := emails.RenderPasswordReset(
s.hostname,
user.FullName,
resetPasswordUrl.String(),
)
@@ -292,6 +293,7 @@ func (s Service) SignUp(
}
subject, textBody, htmlBody, err := emails.RenderConfirmEmail(
s.hostname,
user.FullName,
confirmationUrl.String(),
)

View File

@@ -702,6 +702,7 @@ func (s *TenantAuthzService) InviteUserToOrganization(
}
subject, textBody, htmlBody, err := emails.RenderInvitation(
s.hostname,
recipientName,
organization.Name,
invitationURL,

View File

@@ -455,6 +455,7 @@ func (s *DocumentService) SendSigningNotifications(
}
subject, textBody, htmlBody, err := emails.RenderDocumentSigning(
s.svc.hostname,
people.FullName,
organization.Name,
signRequestURL.String(),
@@ -1570,6 +1571,7 @@ func (s *DocumentService) SendExportEmail(
}
subject, textBody, htmlBody, err := emails.RenderDocumentExport(
s.svc.hostname,
recipientName,
downloadURL,
)

View File

@@ -709,6 +709,7 @@ func (s FrameworkService) SendExportEmail(
}
subject, textBody, htmlBody, err := emails.RenderFrameworkExport(
s.svc.hostname,
recipientName,
downloadURL,
)

View File

@@ -408,6 +408,7 @@ func (s TrustCenterAccessService) sendTrustCenterAccessEmail(
accessURL string,
) error {
subject, textBody, htmlBody, err := emails.RenderTrustCenterAccess(
s.svc.hostname,
name,
companyName,
accessURL,