14 lines
479 B
HTML
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> |