parent
aaaec9f6f5
commit
c99cf0ed85
11 changed files with 37 additions and 40 deletions
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailTestBodyHtml",realmName))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailVerificationBodyCodeHtml",code))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("emailVerificationBodyHtml",link, linkExpiration, realmName, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventLoginErrorBodyHtml",event.date,event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventRemoveTotpBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventUpdatePasswordBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("eventUpdateTotpBodyHtml",event.date, event.ipAddress))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
<#assign requiredActionsText><#if requiredActions??><#list requiredActions><#items as reqActionItem>${msg("requiredAction.${reqActionItem}")}<#sep>, </#sep></#items></#list></#if></#assign>
|
||||
</#outputformat>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("executeActionsBodyHtml",link, linkExpiration, realmName, requiredActionsText, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("identityProviderLinkBodyHtml", identityProviderAlias, realmName, identityProviderContext.username, link, linkExpiration, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<html>
|
||||
<body>
|
||||
<#import "template.ftl" as layout>
|
||||
<@layout.emailLayout>
|
||||
${kcSanitize(msg("passwordResetBodyHtml",link, linkExpiration, realmName, linkExpirationFormatter(linkExpiration)))?no_esc}
|
||||
</body>
|
||||
</html>
|
||||
</@layout.emailLayout>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<#macro emailLayout>
|
||||
<html>
|
||||
<body>
|
||||
<#nested>
|
||||
</body>
|
||||
</html>
|
||||
</#macro>
|
Loading…
Reference in a new issue