SOLVED

Re: Email scripting with custom object - show whole list, but only particular fields

Go to solution
Chase_Carson
Level 1

Re: Email scripting with custom object - show whole list, but only particular fields

Thank you so much for your help that worked!

Nicholas_Manojl
Level 9

Re: Email scripting with custom object - show whole list, but only particular fields

#foreach ( $x in ${customobject} )

<p> $x.fieldName </p>

#end

SanfordWhiteman
Level 10 - Community Moderator

Re: Email scripting with custom object - show whole list, but only particular fields

Have to put the values in an ArrayList too (per revised spec).