muehlviertler
Programmer
The problem looks so: I want to dispatch a mail text which comes from database.In this mail text are variables.
<cfquery name="i" datasource="#dsn#">
select langtext from TableB where nr = '1'
</cfquery>
<cfquery name="t" datasource="#dsn#">
select * from TableA where anderenr = '1'
</cfquery>
<cfmail to="ksc@qubus.net" from="me" subject="anything">
#i.longtext#
</cfmail>
In *i.longtext * are again variables. Then these variables are not dissolved how I can solve this that are dissolved the variables in a variable?
<cfquery name="i" datasource="#dsn#">
select langtext from TableB where nr = '1'
</cfquery>
<cfquery name="t" datasource="#dsn#">
select * from TableA where anderenr = '1'
</cfquery>
<cfmail to="ksc@qubus.net" from="me" subject="anything">
#i.longtext#
</cfmail>
In *i.longtext * are again variables. Then these variables are not dissolved how I can solve this that are dissolved the variables in a variable?