Skip to content
Open
Changes from all commits
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
9 changes: 7 additions & 2 deletions docs/channels/emails.rst
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,18 @@

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 turn off tracking for a certain link by adding the ``mautic:disable:tracking="true"`` HTML attribute.
You can turn off tracking for a certain link by adding the ``data-mautic-disable-tracking="true"`` HTML attribute.

For example:

.. code-block:: html

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

.. note::

The ``mautic:disable:tracking`` attribute is deprecated.

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

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Google.Passive] In general, use active voice instead of passive voice ('is deprecated'). Raw Output: {"message": "[Google.Passive] In general, use active voice instead of passive voice ('is deprecated').", "location": {"path": "docs/channels/emails.rst", "range": {"start": {"line": 324, "column": 46}}}, "severity": "INFO"}
Use ``data-mautic-disable-tracking="true"`` for all new emails and templates.

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