Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I think the context is that you're wanting to modify the Marketo supplied templates.You could save the Marketo supplied email as a template, and then edit the template. But that may or may not be frustrating, because the code might look like a dog's inlined breakfast. In theory you want to add a ta...
Ah right. #set ($x = ${lead.FirstName})$x.charAt(0)Mark me correct, I want the points
#set ($fname = ${lead.FirstName})
Hi $display.uncapitalize($fname)
So it someone is in your database as FRANK, it will render as fRANK.I don't think that makes much sense. Forget about the loop.. keep it simple. #if(${customer.customerID} == $matched)show content A#end#if(${customer.customerID} != $matched)show content B #end
Google's products don't do responsive.. they usually scale the desktop down so it scales. There are hacks available though: https://medium.com/cm-engineering/coding-mobile-first-emails-1513ac4673e#.nrf3v45a0I find I can't get the video overlay to work on Outlook. When you look at the code, it looks ...
It's actually like this:#set ($fname = ${lead.FirstName.toLowerCase()})
Hi $fname
Just be mindful this actually makes the entire word lowercase.Alternatively you could make just the first letter lower case:#set ($fname = ${lead.FirstName})Hi $display.uncapitalize($fname)
Or you could make everything up...I built a little webapp using Angularjs - you type in a username and the date for a paging token and it pops back the last interesting moments for the lead record. If I could do it, a developer could probably do a much better job of it.
I think you're effectively describing a first touch vs multi-touch model.Rather than get philosophical, you could rely on the out of the box tools in Marketo analytics.Effectively your lead source is meaningless in a multi-touch model. It is the source, the originator, the acquirer - it tells you th...
I use Lead Source for generic terms: 'web', "newsletter", "utm_source=", etc.. I hate the idea of anyone creating lead source manually. Also, once it's set, it can't be changed. I use Lead Source Details for an easy to read version of my program name - "my.City - my.Event" or "my.Newsletter Name" et...
Hi guysI recently updated our email template to the editor 2.0 and thought I'd share my experiences if others are interested in wondering where/how to get started.A really fantastic tool for email development is Foundation for Emails, particularly the "Sass" version - which is in other terms a colle...