G
G
GhostPal2014-12-25 15:40:04
Email
GhostPal, 2014-12-25 15:40:04

Is there any way to track from which email the link in the email was clicked?

The mailing will be carried out according to the database, and is it possible to track from which email addresses the link in the letter was clicked?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
Konstantin, 2014-12-25
@armenka29

In the link in the letter you write:
href="YOUR_SITE/?mail=SOAP_SUBSCRIBER"
The site should have Yandex metrics or Google Analytics
We go there and look for visit parameters or URL parameters for something like that, I don't remember exactly. There you will select the mail parameter and you will see who clicked on the link from which mail

G
GhostPal, 2014-12-25
@GhostPal

The point is that we want to use someone else's database, and we do not have direct access to it. And I would like to receive data (postal addresses) from those who clicked on the link, if it is technically feasible at all

E
Evgeny Svirsky, 2017-05-18
@ibr_98

I advise you to hang the class by toggleClassand already for the class in CSS, prescribe styles and hang the handler through on('click').

$(function() {
  $('.gg').on('click', function() {
    $(".new1").toggleClass('someClass');
  });
});

.new1 {
  margin-top: 155px;
  transition: 1s;
}

.new.someClass {
  margin-top: -155px;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question