Hello Sri,I put this code into a typology rule and it seems to work properly:// HTML versionvar regExp = new RegExp('targetData', 'gi');var existingHtml = delivery.content.html.source;var newHtml = existingHtml.replace(regExp, 'recipient');delivery.content.html.source = newHtml;Best Regards,Geoffrey...