dan-m
10/8/2014 - 11:21 AM

Base template for building an email

Base template for building an email

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  		<xsl:output method="xml" />
  
  		<xsl:param name="cid"/>
  		<xsl:param name="cn"/>
  		<xsl:param name="logo"/>
  		<xsl:param name="colour"/>
  
  		<xsl:template match="/">
  
  		<!-- Email goes here -->
  
  		</xsl:template>

    </xsl:stylesheet>