adding js to ACS html | Community
Skip to main content
daver37819942
July 13, 2020
Solved

adding js to ACS html

  • July 13, 2020
  • 1 reply
  • 1519 views

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
 
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by DavidKangni

Hi Daver,

 

You can not add js in Adobe Campaign Standard (officially it's not supported). However, You can achieve this using dynamic content functionality.

 

Thanks,

David

1 reply

DavidKangni
Community Advisor
DavidKangniCommunity AdvisorAccepted solution
Community Advisor
July 14, 2020

Hi Daver,

 

You can not add js in Adobe Campaign Standard (officially it's not supported). However, You can achieve this using dynamic content functionality.

 

Thanks,

David

David Kangni
daver37819942
July 14, 2020
Hi David, would you have a simple sample of this?