Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi everyone,I'm creating an alert email to our internal sales team that shows them which site on our training course website a particular customer has visited. Is there a way to do this via token/velocity? Preferably I'd like to populate the site URL and when the visit occurred.Thanks all.
Thank you Sanford!One last question, I'm having a bit of an issue with the last bit. I feel like I'm missing something obvious but can't figure it out. Any pointers?#foreach( $codeByMostRecent.Availability in $List_cList )#if( $List_cList.Availability == '' )#break#end$latest_code.code#end
I see. So in order to work around that would a #set on the CO fields be enough?#set( $List_cList.Availability = { "1" : true, "" : false } )#if( !$List_cList.availabilityUpdated.isEmpty() )#set( $List_cList.availabilityUpdated = "yyyy-MM-dd'T'HH:mm" )#end#set( $codeByMostRecent = $sorter.sort($List_...
Hey Sanford,Thank you for that. Didn't realize the solution was so simple...Given how simple this script is, is there a circumstance in which this script would fail to output? I have a couple of records that I'm using to test this and 3 of the 4 records work but the last one just outputs token inste...
Hi everyone,I'm trying to figure out how to sort custom objects on multiple levels and need some assistance. So I'd sort by date/time with most recent at the top and then sort by boolean field with "true" values at the top. The result would be the most recent record with "true" value at the top. The...
## set Source and Medium#set( $source = "email" )#set( $medium = "email" )## set Campaign Name#set( $campaign_name = "campaign_name" )## set Content#set( $content = "content" )## set Term #if( ${lead.Segmentation_A} == "A" )#set( $term = "AX" )#elseif( ${lead.Segmentation_B} == "B" )#set( $term = "B...
Hey Sanford,I'd love to find out how to do this as well!