Page 1 of 1

tag in url makes link non-trackable?

Posted: Wed Apr 22, 2009 8:52 pm
by jhagstrand
Hi,

Within the html content section of a newsletter, we include the following link.

<a href="https://store.mycompany.com/store/Upgra ... _freetrial">

OpenEmm does NOT replace that url with a trackable link. I'm assuming that's because of the embedded agnEMAIL tag, because that tag makes the url unique to every recipient. Is that true?

Is there any way I can make this link trackable?

John

Posted: Mon May 04, 2009 7:41 am
by Hofmann M.
Hi jhagstrand,

try this one to get a trackable link:

Code: Select all

<a href="https://store.mycompany.com/store/Upgrade.do?username=##EMAIL##&slk=n_62_freetrial">
Use ##PROFILE-FIELD## in links to get them trackable.
In the content use [agnDB column="PROFILE-FIELD"] to get the database-information readable. ([agnEMAIL] is a special version of [agnDB column="EMAIL"])

As example:

Code: Select all

<a href="https://store.mycompany.com/store/Upgrade.do?username=##EMAIL##&slk=n_62_freetrial">
https://store.mycompany.com/store/Upgrade.do?username=[agnEMAIL]&slk=n_62_freetrial
</a>

Greetings.