I have a note pushing to people that is Long Text format. So that display is:
<cfoutput>
#maindata#
</cfoutput>
And lets say that data is a bunch of "blah blah blah, and more text data, blah blah" which is outputting properly.
What I am trying to do, is add an additional variable note inside the "LongText"
So in the text data I have tried.
#set.newnote#
I have tried these 2 with no luck either:
#Variables[set.newnote]#
#evaluate(set.newnote)#
I'm not having luck. Is this possible or do I need to break out of the output to add an additional output after.
or
or if you want to insert moreData into mainData:
And another note... never ever ever ever use
Evaluate(nonSanitizedUserText)or you will open your application up to injection attacks.