Loading

How to Disable Tracking for Specific URLs in Marketing Cloud Engagement

게시 일자: Mar 26, 2026
상세 설명

Marketing Cloud Engagement automatically adds tracking parameters to all links within email content. There is no standard feature to disable tracking for specific URLs. However, you can disable tracking for specific URLs by using AMPscript.

솔루션

Insert the following AMPscript into the text or HTML blocks of your email.

Note: The following codes are samples. Modify them according to your requirements and ensure you verify the AMPscript works as expected in advance.


Option 1

This method uses the Concat and V functions to prevent the system from recognizing the string as a URL, thereby blocking the addition of tracking parameters.

%%[ 
var @URL 
set @URL = 'https://example.com' /* URL to disable tracking */
var @UnTrackedURL
set @UnTrackedURL = Concat('<a href=', v(@URL), '>Click Here</a>')
]%%
%%=v(@UnTrackedURL)=%%

Option 2

This method uses the TreatAsContent function to prevent the addition of tracking parameters.

%%=TreatAsContent('<a href="https://example.com">Click Here</a>')=%%

추가 자원

Concat
V
TreatAsContent

Knowledge 기사 번호

002465284

 
로드 중
Salesforce Help | Article