It can't pull information from a custom object? This feels very limiting.
I don't want it to do anything to the import. What I want is for it to:
1. See a member has this custom object
2. The object is a custom list (I'm not sure if this is universal to Marketo or just our instance)
3. That list ID is "Referring Members"
Then take the name that is in the field called "Text3", convert it to proper case, and display it in the email to personalize the email so that the email can say something like:
Hey, (name)!
Thanks for joining, we're glad (new token) referred you.
It can't pull information from a custom object? This feels very limiting.
Velocity absolutely, positively, completely* can pull information from Custom Objects.
What’s confusing people is that your Custom Object appears to be called “List” which sends people down a very different road, since they’re thinking about Static or Smart Lists.
So let’s rename your Custom Object to something else: “Party Balloon Rental”.
Your Party Balloon Rental CO has 2 fields:
So you want iterate over the list of Party Balloon Rentals to output the value of Text3 when the Rental ID is “Roy-Wambsgans-1234”.
#if( !$PartyBalloonRentals__cList.isEmpty() )
#foreach( $rental in $PartyBalloonRentals__cList )
#if( $rental.RentalID.equals("Roy-Wambsgans-1234") )
${rental.Text3}
#break
#end
#end
#end
* Well, 1st-level objects, at least.