Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
It seems like your message is just over Gmail's limit of: ~100-102KB so it is truncating the code You could: - Move the unsubscribe link so that something else is then getting cut-off (kinda hacky)- Reduce code size
The suggestion was made assuming you are including https:// in the field. Marketo has a specific system behavior and if you do not follow the guidelines- the links will break in live emails but not in previews or samples. Here is a snippet from the docs for reference: 123456789101112131415#set($url...
Def. checkout Sanford's link above! His blog has lots of hard to find velocity information. For the links, I would not expect any of them to work reliably unless they are formatted with the protocol before the variable: ${lead.recCourse2PTitle}
I mostly use Email Scripting (Velocity) for this. Once you get the hang of it, it's quite powerful in terms of showing/hiding elements or dynamically building emails on a user level. One message in my current instance has 900+ variations and Velocity builds it out on the fly.Here's a link to some r...
You're welcome! This problem can be a tricky one to solve so am happy to share some insight that may help. Jep lays out a good breakdown of what could be happening with response times. Adding to what Jep said, the webhooks are also prioritized as 'low' priority unless you implement a workaround. ...
When the system is backed up, what do you see when you go to the Campaign Queue? You should be able to see the campaign priorities as High, Medium, Low. This might help determine where the blockage is occurring: To weight something as 'high priority' that isn't normally, you can add a blank 'Send A...
You could:- use javascript on the page to fill out a hidden field with the 'day of the week' and use that for automation- use Email Scripting / Velocity to change content - use a Webhook and simple script to return in/out of business hours Some resources that might help JavaScripthttps://developer....
Don't see Marketo's tracking script on that page or others. I would suggest including that and seeing if your issue is fixed Go to admin -> munchkin and there should be a script to copy *Note: this will probably fix the known HTML content not showing but will not pre-fill the fields without a worka...
Once you get the #foreach working, you may then be surprised by an obscure system behavior with links and #foreach loops. If you are going to output a link from within a #foreach loop, you will probably need to add the class "mktNoTrack" to your link OR deploy a workaround. Otherwise, you'll poten...
Yes, so long as your use case is fairly simple, that works: ##toLowerCase example#set( $var = $fieldName__c.toLowerCase() )#if( $var == "pickup" )##do work#elseif( $var == "delivery" )##do other work#end##toLowerCase example#if( $fieldName__c.toLowerCase() == "pickup" )##do work#elseif( $fieldName__...