ACS - email template and javascript / product listing
Hi all
is it possible to have a clear reference/example of ACS capabilities in terms of javascript customization of email templates?
For instance: we have some custom "product listing" requirements that are not easily implemented using out of the box functionality.
We need to be able to apply some behavour on every list item, depending of some attributes and so we may need to script the iteration.
For example (pseudo code):
<% for (int i=0; i<productList.length; i++) {
var product = productList[i];
%>
<tr>
<%
if (product.someproperty=='XX') {
%>
.....custom layout...
<%}%>
</tr>
<%}%>
Do you think that this is possible in ACS?
Thanks.
Fabio