Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Added null-safety checks to avoid potential runtime errors when fields are empty.You don’t need to do this, though. Assuming you mean#if( $lead.Support_Type__c ) this will always be true because lead fields are always Strings in Velocity. They won’t be null, they can only be empty Strings or non-emp...
You’re right that this isn’t a good situation to be in. Specifically, could we sync the custom object data into Marketo and then use a Smart Campaign to populate custom Person fields, which could then be used as personalization tokens in the email?If you import the data as (Person-linked) Marketo C...
Not clear what you could mean by “truncation tool”. You can’t just truncate code at an arbitrary point or the whole thing breaks (think about truncating before a closing #end!). Anyway, it’s impossible to give suggestions without seeing your code. 100KB is a very high limit. Maybe you’re repeating s...
Next Eligible Send Date is in pastORNext Eligible Send Date is emptyExcept “in past” isn’t a supported filter. You probably mean “in past before 0 days” or similar. Also note “is empty” isn’t necessary: an empty Date field is considered to be in the past.
Has anyone found a more efficient way to report on snippet performance?As the others note, there’s no snippet-centric reporting. The “snippet-ness” of an element is ignored when links are rewritten for tracking. Therefore you’d have to distinguish the in-snippet links in some way. UTMs aren’t mandat...
Of course!#set( $CustomDateFormat = "MM/dd/yyyy" ) That’s what you pass to $date.format(), not to $convert.parseDate().
As primitive as SMTP and DNS may seem, lots of stuff needs to work for an email to go from sender ⮕ recipient’s MX ⮕ recipient’s mailbox. Then even more stuff needs to work for a mail client to parse and render an HTML email, plus its embedded resources and/or remote images. The good news: modern in...
Extending an earlier post on standard JavaScript ${template strings} on Marketo LPs, here’s how to use near-standard {{ variable }} syntax. Say you want to use AngularJS to create highly dynamic LPs, or even single-page apps, hosted on Marketo. (May not be a common ask, but it is technically feasibl...
(It's Custom HTML, not Custom CSS.)There's no "guesswork" at all! KV HTML uses the existing Munchkin cookie association if there is one. That association only comes from previously clicking a tracked link or filling out a form (or using the API, but you're almost certainly not doing this). What you'...
Except this code does not work. onChange is not a function property of a Marketo form object, among other errors. I assume the snippet was generated by a machine that doesn’t understand Marketo forms. Such content is not allowed here on the community. While you can use JavaScript to manage HTML cont...