Hey guys, i'm getting started with Velocity and am trying to check if a record in Salesforce's Name is blank, and do some logic.
I've solved this by switching the null check to $foo != "" but I'm still interested to see what you guys know about Nulls in Marketo's implementation of Velocitybecause the information I've seen online is sporadic, I'm going to encounter it later, and the stuff I've played with below threw a minimalistic error:
#set( $foo = ${lead.FirstName} )
#if ($foo != null)
Hello $foo!
#else
Hello Unknown Person!
#end
When sending test email: