A recipient receives a content-scraped email that displays the code rather than the content. The email displayed code in the sent email that was similar to the following example:
%%_SP_CONTENT_SCRAPE XT_CSNAME="Your_Content_Scrape_Name_here" XT_CSTRACKLINKS="TRUE" XT_CSLOCATIONTYPE="HTTP" XT_CSLOCATIONREF="www.URL_location_for_your_content_here" %%
This issue can happen if there is a trailing <span>
tag within the content scrape code. For example:
<p style="text-align: center">%%_SP_CONTENT_SCRAPE xt_csname="Your_Content_Scrape_Name_here" xt_cstracklinks="true" xt_cslocationtype="HTTP" xt_cslocationref="www.URL_location_for_your_content_here"; %%</span></p>
The </span>
near the end is the cause of the issue.
The correct code is:
<p style="text-align: center">%%_SP_CONTENT_SCRAPE xt_csname="Your_Content_Scrape_Name_here" xt_cstracklinks="true" xt_cslocationtype="HTTP" xt_cslocationref="www.URL_location_for_your_content_here"; %%</p>