Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off Mandrill transactional email URL tracking

I use simple SMTP settings to send emails from my app with Mandrill. Mandrill however hijacks the links and injects its own URLs so that link is rerouted via their servers. That results with user seeing the mandrill URL in their browser before going to the the right page. Any way to turn that off?

I looked through the settings and could not find it.

like image 993
Lukasz Muzyka Avatar asked Oct 08 '14 05:10

Lukasz Muzyka


2 Answers

Also it's simple to disable click-tracking for individual link by mc:disable-tracking parameter.

<a href="//example.com" mc:disable-tracking>
  Click here to confirm your email
</a>

The extra parameter will be removed when the email is sent, and no click-tracking will be applied to this link.

See: documentation.

like image 79
vatavale Avatar answered Dec 27 '22 06:12

vatavale


There's an option on the Sending Defaults page in your account that is for click-tracking (should be a drop down menu, near the top, just below the checkbox for tracking opens). What you select there will be the default option applied to all messages, unless you provide a different per-message setting for click-tracking. With SMTP, you can set click-tracking on a per-message basis using custom SMTP headers. More information about using SMTP headers to customize this can be found in the Mandrill KB here.

like image 20
Kaitlin Avatar answered Dec 27 '22 04:12

Kaitlin