Velocity Scripting with URLs for Fields
Hello!
Two questions regarding using velocity and pulling in URLs from custom objects fields:
1) I was curious how timed content from a velocity script acts once it hits the inbox. For example, if I have a script that "shows X URL for the next 15 days" - once it is in someone's inbox I am assuming that since a click would pull the redirect and browser that the script would kick in and if they were outside the time parameters the URL would not show/work?
Ex: Show https://google.com from 6/12 - 6/15. Email send on 6/12. Recipient opens from inbox on 6/16. When link is clicked script updates URL and original URL is not shown?
2) I believe I read that URLs pulled using "#foreach" are not trackable. Does this include if the script is pulling from a field with URL as content? So for something like this:
#foreach ($item in $itemObject)
#if ( !$item.urlField.isEmpty() )
$item.urlField
#end
#end
If the URL exists within the field, would that mean it's not tracked as a click event or even a "Link Contains x" to change a program status or anything?