Output variables from database in CFSAVECONTENT
I have HTML code, containing dynamic variables, stored in a database in a field named "data',. An example of raw data in that field would be:
<a href="<cfoutput>#application.siteroot#</cfoutput>/?utm_campaign=transactional&utm_source=emails.logo&utm_medium=email"><img src="<cfoutput>#application.siteroot/logo10-180.png"></a>
Within a cfc, I have code that sets this data in a <cfcontent> tag as follows:
<cfsavecontent variable="emailBody">
<cfoutput>#vData#</cfoutput>
</cfsavecontent>
However, when I tried to insert "emailBody" into an email and send it, the resulting email does not evaluate the variables in the email body and the email ends up looking like this:

What am I doing wrong?
