Intelligent Notification Services
The stylesheet file, EMAILTranscoder_SS.xsl contains the following stylesheet code.
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output omit-xml-declaration="yes" method="text"/>
<xsl:template match="message">
Msg: <xsl:value-of select="text"/>
<xsl:for-each select="url">
<xsl:text>
</xsl:text><xsl:value-of select="."/>
</xsl:for-each>
<xsl:text>
PLEASE DO NOT REPLY TO THIS NOTE
</xsl:text>
</xsl:template>
</xsl:stylesheet>