Closed
Description
- listmonk: 2.0.0
- OS: Ubuntu
When you try to apply link tracking to a template variable, it either fails the validation or it simply doesn't convert the link to a tracked link.
I've tried to apply the following:
<a href="{{ .Subscriber.Attribs.jobs.link }}@TrackLink">View</a>
<a href="{{ TrackLink ".Subscriber.Attribs.jobs.link" }}">View</a>
<a href="{{ TrackLink {{ .Subscriber.Attribs.jobs.link }} }}">View</a>
<a href="{{ .Subscriber.Attribs.jobs.link@TrackLink }}">View</a>
Is there perhaps a way to track links generated from the attributes on a subscriber? Feels like I'm missing something simple here.