Text Mail Formatting in XML
Hi
This is regarding the formating the text mail. The code which I am using is
<xsl:template match="PlainTextMail">
Subtotal: <xsl:value-of select="SubTotal" />
Tax: <xsl:value-of select="Tax" />
<xsl:if test="CertificateAmount != ''">
Certificates: <xsl:value-of select="CertificateAmount" />
</xsl:if>
Shipping: <xsl:value-of select="Shipping" />
Grand Total: <xsl:value-of select="GrandTotal" />
</xsl:template>
As shown, I want to introduce some blank spaces between Subtotal and page margin.
Even if I provide space bar,its not working.
How can I achieve the required formatting.
Thanks in adance