SOLVED

Re: Lookup list in Marketo

Go to solution
Babu_Chikati
Level 3

Lookup list in Marketo

Hi,

I am looking for an option in Marketo where I can keep list of lookup fields and use these look up fields to render in the email template

for example: <urlkey,urlValue> . Would like to get urlValue based on urlKey and render in the email.

Please suggest if any other alternatives.

 

Thanks,

Babu

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Lookup list in Marketo

Easy. Set up an object (LinkedHashMap, technically) in a Velocity token.

#set( $myStuff = {
  "key": "value",
  "key2": "value2"
})

 

Then get values from it in other Velocity tokens.

${myStuff.get("key2")}

View solution in original post

3 REPLIES 3
SanfordWhiteman
Level 10 - Community Moderator

Re: Lookup list in Marketo

Easy. Set up an object (LinkedHashMap, technically) in a Velocity token.

#set( $myStuff = {
  "key": "value",
  "key2": "value2"
})

 

Then get values from it in other Velocity tokens.

${myStuff.get("key2")}
Babu_Chikati
Level 3

Re: Lookup list in Marketo

Thank you Sanford, it worked very well.

 

Thanks,

Babu

Babu_Chikati
Level 3

Re: Lookup list in Marketo

Hi Sanford,

Is there any of your blogs available for border understanding on lookup concept in Marketo.

 

Thanks,

Babu