I've tried with;
<mail-template name="template">
<from addresses="mail"/>
<to addresses="#{mailTO}"/>
<subject>Subject</subject>
<text>qwerty
<html>
<body>
<a href="www.google.it">here</a>
</body>
</html>
</text>
</mail-template>
The result is a simple text "here"
Then i've tried with
<mail-template name="template">
<from addresses="mail"/>
<to addresses="#{mailTO}"/>
<subject>Subject</subject>
<text>qwerty</text>
<html>
<body>
<a href="www.google.it">here</a>
</body>
</html>
</mail-template>
The result is a mail with an attachment "noname" that is a page html with link.
Can anyone help me?
Thanks in advance