Is there a query or method I can use to list out all Delivery Nodes that contain a certain call to a Personalization Block?
I need to overwrite a Personalization Block with some updated HTML, but before I do I would love to see all delivery nodes that contain said Personalization Block.
Withing the PB, I would have code that looks like the below.
I would LOVE to locate all Delivery Nodes that use "EN_CONTENT_HEADER" (or the FR one)
<% if (targetData.FIELD == "0") { %>
<% if ( recipient.language == "F" ) { %>
<%@ include view='FR_CONTENT_HEADER' %>
<% } else { %>
<%@ include view='EN_CONTENT_HEADER' %>
<% } %>
<% } %>