Hi,
You can insert following value into
BizForm -> Notification e-mail (if you check Use custom layout):
{% ProcessCustomMacro("someexpression", "") %}
This expresion will be resolved to "Resolved expression" string if following code is defined in the file:
~\App_Code\Global\CMS\CMSCustom.cs
public static string ResolveCustomMacro(MacroResolver sender, string expression, out bool match)
{
match = false;
string result = expression;
// Add your custom macro evaluation
switch (expression.ToLower())
{
case "someexpression":
match = true;
result = "Resolved expression";
break;
}
return result;
}
Best regards,
Ivana Tomanickova