In ISAM 9.0.1 it’s possible to use a rich text email template for Email One Time Passwords. There is a knack to setting it up though, you need to add the HTML to the XML template file using CDATA tags like the example below:
<?xml version="1.0" encoding="UTF-8"?> <root> <Subject> <Value> Email One-time Password </Value> </Subject> <Message> <b><Value> <![CDATA[ <html> <body> <img src="http://hosting.com/image.gif" /> <br /> This is your HTML Email one-time password <a id="jazz_ui_ResourceLink_3" class="jazz-ui-ResourceLink" href="https://rtp-rtc6.tivlab.raleigh.ibm.com:9443/jazz/users/OTP_STRING">@OTP_STRING</a>@. <br /> <p>Thank you,<br /> IBM.com</p> </body> </html> ]]> </Value></b> </Message> </root>