The "__s" link parameter is how we're able to track and identify the people on your list who click a link in an email. It's also how we are able to attribute link clicks to email analytics.
When a person clicks a link in an email, the parameter captures the person's unique ID and we're able to associate the link click with an individual person on your list.
The following is an example of a URL with appended link parameter:
https://drip.com/pricing?__s=XXXXXX
The "XXXXXX" portion of the parameter is how the URL captures the person's ID.
If you need to suppress the parameter from your link, the following attributes can be manually applied to the URL from inside of the email's source code:
data-skip-tracking="true"
and data-utm-override="true"
Example:
<a href="yourlink.com" data-skip-tracking="true" data-utm-override="true">My Link</a>
To apply the attribute to a link in an email:
-
Click
<>
Source - Manually add the attribute to the link