「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.
これを行う方法。