In ACS can one add js to create on fly(dynamic) variables that would passed on through a transactional payload?
so create a title or message based of a payload variable?
Example: status would be passed
<!-- <%
title = ""
message = ""
if (status == "closed") {
title = "Thank You For Your Order"
message = "Your payment for this order has been processed."
} else if (status == "autocancelled") {
title = "Your Order Has Been Cancelled"
message = "Unfortunately, we were unable to fulfill your order at this time. You will not be charged."
} else if (status == "cancelled") {
title = "Your Order Has Been Cancelled"
message = "You will not be charged."
} else if (status == "partialrefunded") {
title = "Items From Your Order Have Been Refunded"
message = "We have issued you a refund to your original form of payment."
} else if (status == "refunded") {
title = "Your Order Has Been Refunded"
message = "We have issued you a refund to your original form of payment."
}
%> -->
When trying to add this there is an error when saving the html
Thoughts