I have a test.cfm
page and would like to call a cfc with a <cffunction>
named errorEmail
using <cfscript>
from that page (test.cfm) instead of
<cfinvoke component = "#cfcPath#" method = "errorEmail" returnVariable = "myReturn"
description = "get list of projman">
</cfinvoke>
I have tried:
<cfscript>
errorEmail(cfcPath);
</cfscript>
errorEmail
with the cfinvoke tag? – Guarneri