Files
spring-boot-rest/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-request-parameters.html
2020-12-28 12:10:31 +01:00

20 lines
677 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="${param.emailsubject}">Subject</p>
<h1>Content</h1>
<p th:text="${param.emailcontent}"></p>
<h1>Email addresses</h1>
<p th:each="emailaddress : ${param.emailaddress}">
<span th:text="${emailaddress}"></span>
</p>
<h1>Email address 1</h1>
<p th:text="${param.emailaddress[0]}"></p>
<h1>Email address 2</h1>
<p th:text="${param.emailaddress[1]}"></p>
<h1>Language</h1>
<p th:text="${param.emaillocale}"></p>
</body>
</html>