I'm trying to use the layout:decorate
directive with a text file (plain text email header/footer)
Template begin called:
[# layout:decorate="~{email/plainPart}" th:with="subject=${subject}" ]
[# layout:fragment="content"]
Thanks for ordering [( ${orderDetail} )].
[/]
[/]
Layout template:
Subject: [( ${subject} )]
[# layout:fragment="content"][/]
The temple renders fine, and without any errors, but I'm not seeing any of the layout template (Subject, for example).