I have an automated email that uses one template twice (2 different query results). The stylesheet (basic, used for colors and formatting only) is linked on the output template. An <h3> tag before the 1st and 2nd outputs AND all of the 2nd output render the stylesheet just fine, but the first output looks like a default HTML table.
Any ideas??
Here's the code for the email:
<cfmail to="#myemail#" from="#me#" subject="Alarm test" type="html">
<h3><center>Cluster Summary for #dateformat(dateadd("d",-1,now()),"mm/dd/yy")#</center></h3>
<cfset breakout = "TRUE">
<cfset siteby = "FALSE">
<cfset thisquery = "cellhealth">
<cfinclude template="../cellhealth_output.cfm">
<hr>
<h3><center>Cluster Detail for #dateformat(dateadd("d",-1,now()),"mm/dd/yy")#</center></h3>
<cfset breakout = "TRUE">
<cfset siteby = "TRUE">
<cfset thisquery = "cellhealth2">
<cfinclude template="../cellhealth_output.cfm">
</cfmail>
Any ideas??
Here's the code for the email:
<cfmail to="#myemail#" from="#me#" subject="Alarm test" type="html">
<h3><center>Cluster Summary for #dateformat(dateadd("d",-1,now()),"mm/dd/yy")#</center></h3>
<cfset breakout = "TRUE">
<cfset siteby = "FALSE">
<cfset thisquery = "cellhealth">
<cfinclude template="../cellhealth_output.cfm">
<hr>
<h3><center>Cluster Detail for #dateformat(dateadd("d",-1,now()),"mm/dd/yy")#</center></h3>
<cfset breakout = "TRUE">
<cfset siteby = "TRUE">
<cfset thisquery = "cellhealth2">
<cfinclude template="../cellhealth_output.cfm">
</cfmail>