Files
spring-boot-rest/spring-web-modules/spring-thymeleaf-5/src/main/resources/templates/mvcdata/email-session-attributes.html
2021-12-22 15:16:34 +05:30

14 lines
479 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<body>
<h1>Subject</h1>
<p th:text="${session.emaildata.emailSubject}"></p>
<h1>Content</h1>
<p th:text="${session.emaildata.emailBody}"></p>
<h1>Email address</h1>
<p th:text="${session.emaildata.emailAddress1}"></p>
<h1>Language</h1>
<p th:text="${#session.getAttribute('emaillocale')}"></p>
</body>
</html>