MCSA guy who likes to hang out in the community going through the people's opinions, thoughts about the product and also answering questions/issues for fellow Marketo users. Have built few custom connectors for integrating the Marketo with other Adobe Marketing tools like Analytics, AEM, Target for extending Marketo's functionality. Have extensively worked on Marketo APIs along with the org level Marketo setup. Let's connect for a discussion on anything revolving around MarTech. ;)
I hope you included the code to print the output in a separate velocity token and included it in the email, right? I tried this in my SB and it worked fine for me - I created two s...
Glad that it worked out - the tree on the left in the database section shows workspaces and not the person partitions - I've seen people getting confused there as one would assume ...
Further to my earlier comment - you can refer below script to set the default values:
#if($lead.Title.equals("MD") && !$lead.LastName.isEmpty())
#set($greeting = "Dr. $lead.LastNa...
In case you're using separate tokens to set and emit the values - you need to include both the tokes in your email. The set token won't display anything but will make the data avai...
You can explore SFDC's Web2Lead endpoint for creating the duplicate records in SFDC from the Marketo form. The record type can be included as a hidden field on the form.
Also, I'm...
Marketo returns Mailing ID attribute for the following activities -
Activity ID
Activity Name
Activity Description
8
Email Bounced
Marketo Email is bounced for a lead
9
Unsu...
I would suggest using code editor/validator (there are a million of open source editors available to download) to ensure that all the braces are closed, balanced, there are no open...
You need to print the greeting variable after setting it in the if-else construct, can you try the script below?
#if($lead.Title.equals("MD"))
#set($greeting = "Dr. $lead.LastName...