Hi @VarnikaJa1, ACS does not support dynamic audience, it might be feasible to deal with your requirement implementing three separate workflows running on day 0, day 5 and day 8. Regards, Celia
Hi @nadinebaumgarten, It comes to my mind that the most similar thing that you can do is to create a content block in which you will insert your HTML and afterwards when building the transactional email insert it. Besides if there are so many you can store it on a CMS or AEM and fetch them via API. ...
Hi @ShreeR1, Check that the delivery is linked correctly to the workflow and if it exists. Additionally verify that the test profile is not blacklisted. Regards, Celia
Hi @DishaSharma,// Define the source tag
var sourceTag = "E00040S3000D99908";
// Ensure the email content is accessible
if (message && message.content && message.content.html && message.content.html.source) {
var htmlContent = message.content.html.source; // Get the email HTML content
// C...
Hi @JCLo1, What I have experienced in some projects is that array methods sometimes can be limited, string methods also and object methods sometimes give problems. I share with you API documentation that applies to V7 and V8: Adobe Campaign - API Documentation Regards,Celia
Hi @DishaSharma, Try with these:// Define the source tag
var sourceTag = "E00040S3000D99908";
// Ensure the email content is accessible
if (message && message.content && message.content.html) {
var htmlContent = message.content.html.source; // Get the email HTML content
if (htmlContent) {
...
Hi @DishaSharma, Try with this version, using message.cntent.html.source. // Define the source tag
var sourceTag = "E00040S3000D99908";
// Ensure the email content is accessible
if (message && message.content && message.content.html && message.content.html.source) {
var htmlContent = message.co...