Pushwoosh may modify URLs in your emails by default to enable click tracking. This involves redirecting the link through Pushwoosh servers to record the click before sending the user to the final destination.
If you want a specific link in your email to use the exact URL you provided, without any tracking or redirection by Pushwoosh, you can add a special attribute to the link's HTML:
- In your email's HTML code, find the anchor tag (
<a>
) for the link you want to change. - Modify the
href
attribute by adding(pw_no_track_statistics)
immediately after your URL, before the closing quote.
Example:
-
Original HTML:
<a href="https://yourwebsite.com/your-page">Click Here</a>
-
Modified HTML to disable tracking:
<a href="https://yourwebsite.com/your-page(pw_no_track_statistics)">Click Here</a>
Key Points:
* When you use (pw_no_track_statistics)
, Pushwoosh will not track clicks for that specific link.
* The (pw_no_track_statistics)
part will be automatically removed by Pushwoosh before the email is sent, so the recipient's email client will see the clean URL (e.g., https://yourwebsite.com/your-page
).
* This method allows you to control tracking on a per-link basis.
Comments
0 comments
Please sign in to leave a comment.