我在“grails-app/views/teamplates”目录中创建了一个文件“_emailTemplate”。它是一个html模板文件,文件内容如下,
<html>
<strong>Client: </strong>${client}<br/>
<strong>Training: </strong>${training}<br/>
<strong>Dates: </strong>${dates}<br/>
</html>
我想加载此文件并用特定值替换占位符,例如
${client} with the value of client variable etc.
这个怎么做。