42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="html" encoding="utf-8" indent="yes"/>
|
|
|
|
<xsl:param name="USER-TEMP-PASSWORD"/>
|
|
|
|
<xsl:template match="/">
|
|
|
|
<style type="text/css">
|
|
|
|
.text {
|
|
font-family: Calibri ,Arial, Helvetica, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
</style>
|
|
|
|
<p class="text">
|
|
Dear <xsl:value-of select="//user/record/user_client_name"/>,
|
|
</p>
|
|
|
|
<p class="text">Thank you for being a customer of DEC International. Below are your account credentials.</p>
|
|
|
|
<p class="text">Username: <xsl:value-of select="//user/record/user_name"/></p>
|
|
<p class="text">Password: <xsl:value-of select="$USER-TEMP-PASSWORD"/></p>
|
|
|
|
<p class="text">You login in at the following web address: <a href="https://ahr.realestatedatainc.com" target="_blank">Atlanta Housing Report</a></p>
|
|
|
|
<p class="text">Thank you,</p>
|
|
|
|
<p class="text">DEC-International Support</p>
|
|
|
|
|
|
<br/>
|
|
<br/>
|
|
<br/> <!-- Line Breaks before email Disclaimer -->
|
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|