Hi,
I am trying to see what I can do with the:
${oN24Attendee_cList.get(0).eventid} or ${oN24Attendee_cList.get(0).email} On24 Attendee Object.
My idea is to look up the ON24 event id to check if the lead $attendee the webinar or not. I think this should be possible by using oN24Attendee_cList.get(0).eventid??
Something like this?
#foreach( $attendee in $oN24Attendee_cList )
#if($attendee.eventid == 3046872)
<h4>I watched Webinar</h4>
#elseif ( Lead is noshow??)
<h4>I did not watched Webinar</h4>
#end
#end