A developer wants to configure performance tracking of the content dynamically created via AMPscript in an email. Which two steps should be performed to achieve this objective? Choose 2
A.
Request theImpression Tracking feature be enabled on the account
B.
Include the functions BeginImpressionRegion and EndImpressionRegion
C.
Configure dynamic content block in Content Builder
D.
Add a unique identifier in the HTML tags within the generated content
To track the performance of dynamically created content via AMPscript in an email, the following steps should be performed:
Request the Impression Tracking feature be enabled on the account: This feature must be enabled to track impressions of dynamic content.
Include the functions BeginImpressionRegion and EndImpressionRegion: These functions are used within the AMPscript code to mark the beginning and end of the content region that needs to be tracked.
Example:
ampscript
Copy code
%%[BeginImpressionRegion('DynamicContent')]%%
%%=v(@DynamicContent)=%%
%%[EndImpressionRegion()]%%
[: Salesforce AMPscript Functions for Tracking, , , ]
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit