Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracking links in Emails: Do not track hint #313

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/channels/emails.rst
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,15 @@

.. vale on

Mautic tracks clicks of each link in an Email, with the stats displayed at the bottom of each Email detail view under the Click Counts tab.
Mautic tracks clicks of each link in an Email, with the stats displayed at the bottom of each Email detail view under the Click Counts tab.

You can disable tracking for a certain link by adding the mautic:disable:tracking="true" html attribute.

Check warning on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Google.WordList] Use 'turn off' or 'off' instead of 'disable'. Raw Output: {"message": "[Google.WordList] Use 'turn off' or 'off' instead of 'disable'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 9}}}, "severity": "WARNING"}

Check failure on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Mautic' instead of 'mautic'. Raw Output: {"message": "[Vale.Terms] Use 'Mautic' instead of 'mautic'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 59}}}, "severity": "ERROR"}

Check warning on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Mautic.FeatureList] Is this referring to a Mautic feature? If so, use 'Mautic' instead of 'mautic'. Raw Output: {"message": "[Mautic.FeatureList] Is this referring to a Mautic feature? If so, use 'Mautic' instead of 'mautic'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 59}}}, "severity": "INFO"}

Check warning on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Google.WordList] Use 'turn off' or 'off' instead of 'disable'. Raw Output: {"message": "[Google.WordList] Use 'turn off' or 'off' instead of 'disable'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 66}}}, "severity": "WARNING"}

Check failure on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'TRUE' instead of 'true'. Raw Output: {"message": "[Vale.Terms] Use 'TRUE' instead of 'true'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 84}}}, "severity": "ERROR"}

Check failure on line 268 in docs/channels/emails.rst

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'HTML' instead of 'html'. Raw Output: {"message": "[Vale.Terms] Use 'HTML' instead of 'html'.", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 268, "column": 90}}}, "severity": "ERROR"}
escopecz marked this conversation as resolved.
Show resolved Hide resolved

For example:

.. code-block:: html

<a href="https://mautic.example.com/" mautic:disable:tracking="true">Non tracked link</a>

Unsubscribing
*************
Expand Down
Loading