Hi Jeffrey, Is this Event RSVP field on the lead object in Marketo? If so you could just leverage the {{lead.Event RSVP}} in the email. That should appear when you click on the tokens section in the email editor. You could customize your email to look more reader friendly like I am attending: {{lead.Event RSVP}} Hope this helps Floyd Edit: Sorry just realised that the field is a checkbox. which would only display a 1 or 0 value. 1 = true and "blank" = false. If we need to make this more user friendly you may need to leverage email scripting token to replace the 1 with True and blank with False. Process would be something like 1. Creating a Email Script "my token": Managing My Tokens - Marketo Docs - Product Documentation 2. Add velocity scripting code (example) ##check if the Event RSVP = 1 #if(${lead.Event RSVP} == "1") ## set display value is "Yes, I am attending" #set($display = "Yes, I am attending") #else ## set display value is "No, I am not attending" #set($display = "No, I am not attending") #end ##print the value ${display} 3. Add the mytoken value into the email.
... View more