Can links be tracked like this?

by jtripp
8 replies
Hello,

I am hoping someone can help me with link tracking.

What I want to do is send out emails to potential retailers and somehow know which people clicked on the link within the email. Not just how many people - but the specific people. That way I can follow up by phone with anyone who actually clicked the link but didn't email me.

Is that possible?

TIA,
Jennifer
#links #tracked
  • Profile picture of the author mojojuju
    Yes, it's possible.
    Signature

    :)

    {{ DiscussionBoard.errors[2004331].message }}
  • Profile picture of the author akdiver
    mojojuju, care to elaborate?
    {{ DiscussionBoard.errors[2004367].message }}
    • Profile picture of the author jtripp
      Originally Posted by akdiver View Post

      mojojuju, care to elaborate?
      Yes, please do!

      I don't mind having to do a little legwork to make this happen. So even if the solution takes a bit of work creating individual URLs each time or something like that I'd like to hear it.

      Thanks,
      Jennifer
      {{ DiscussionBoard.errors[2004510].message }}
      • Profile picture of the author mojojuju
        Originally Posted by jtripp View Post

        So even if the solution takes a bit of work creating individual URLs each time or something like that I'd like to hear it.

        Thanks,
        Jennifer
        That's exactly what you'd do, give each email recipient a different url.

        If you don't have a lot of email recipients and you don't have much programming skills, you can accomplish most of what you need to do in MS EXCEL:

        Make a spreadsheet with a list of all email recipients along with a unique identifier:

        jane@acmebiz.com 1
        bob@bobsupplies.com 2
        rick@rickswidgets.com 3

        ... and so on and so forth...

        Then you set up the emails such that the link in the email uses the number associated with the recipient in the URI you send them:

        ----------------------------

        To:jane@acmebiz.com
        From: me@mysite.com

        Would you click my freaking link:
        http://www.mysite.com/index.php?param=1

        -----------------------------

        To:bob@bobsupplies.com
        From: me@mysite.com

        Would you click my freaking link:
        http://www.mysite.com/index.php?param=2

        -----------------------------

        To:rick@rickswidgets.com
        From: me@mysite.com

        Would you click my freaking link:
        http://www.mysite.com/index.php?param=3

        -----------------------------

        So once you've sent out those emails, you can check your server or tracking logs and look for any existence of "param=something" in the url.

        If you see a hit for "http://www.mysite.com/index.php?param=3" , then you'd know that Rick, or the guy who stole his laptop, has clicked through the link in the email.

        This can get more useful if you take note of the paths these people take in navigating your web site. Perhaps you can better gauge their individual interest in what you're offering if you can view their paths. phptraffica can help with individual path analysis.

        For instance, if the visitor arrives at http://www.mysite.com/index.php?param=2 , then you know it was Bob. And it would be cool if you saw his path taken to http://www.mysite.com/about-us/ , then to http://www.mysite.com/portfolio/, and then http://www.mysite.com/our-prices/ .

        Looking at each individual's path like that might make it apparent what kind's of interests they have.

        This kind of stuff would be best done writing a few little scripts, but you could also do it like I mentioned above with Excel to prepare the unique identifying numbers.
        Signature

        :)

        {{ DiscussionBoard.errors[2004711].message }}
        • Profile picture of the author jtripp
          Thank you so much for the explanation. Exactly what I needed.

          I really appreciate you taking the time.

          Jennifer
          {{ DiscussionBoard.errors[2011073].message }}
        • Profile picture of the author jtripp
          One more question about this. Does the page have to be php? I see you have it listed as index.php - would it work with index.html?

          Sorry if that's a dumb question. Definitely not a programmer here!

          Thanks,
          Jennifer
          {{ DiscussionBoard.errors[2012966].message }}
          • Profile picture of the author mojojuju
            Originally Posted by jtripp View Post

            One more question about this. Does the page have to be php? I see you have it listed as index.php - would it work with index.html?
            Whether it's index.html or index.php doesn't matter. You'll see records in your server logs for index.html?param=1 or index.php?param=1 for whichever file type you use.
            Signature

            :)

            {{ DiscussionBoard.errors[2014706].message }}
  • Profile picture of the author Mark B
    Wow, mojojuju! That is awesome info. Thanks.
    {{ DiscussionBoard.errors[2013303].message }}

Trending Topics