Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
We have a weekly newsletter than I'm automating as much as possible. One piece I'm trying to put in dynamically is what we call Lifetime Deposits. If a customer cancels a tour, they can use their deposit for another tour whenever they like. It never expires.So what I'm trying to do is to insert a bl...
A lot of good thoughts here!I went through a similar process myself around 6 months ago. We have been with Marketo for about 3 years. I framed it to the other vendors as this: What's your big killer feature that Marketo doesn't have that will justify the 6 months - 1 year that we will spend rebuildi...
Respectfully, I think most people would be super annoyed at your brand for tricking them with a fake forward. I've heard many people complain about the same strategy with using "Re:" in a subject line which clearly isn't a reply. It's deceitful and you will instantly erode any trust your subscribers...
Thanks so much Sanford! That has done the trick. I previously thought I had tested that - but I'm guessing I used ${variable}[0] instead of ${variable[0]} . With the proper notation, this works just fine.Your trick to show syntax is very useful too, thank you!
Hi SanfordSorry, I'm not exactly sure what you mean. Do you mean highlighting the code vs the comments? If there's a better way to display this let me know - it doesn't make it easy on the eyes!
Hi thereI'm trying to dynamically feed a variable into a URL but I'm having trouble. It works just fine in preview mode (which I know isn't the same as a live test) but when I send myself a sample email, it breaks - the URL variable outputs as $MatchingToursDossiers[0] instead of the actual value I ...
Thanks everyone, it seems to be working correctly now!Once I removed the brackets and referenced a specific part of the array it is working fine!
Thanks Sanford. Unfortunately I'm still having trouble - and I don't think it's related explicitly to that .split functionality now. When I use:#set ($DossierArray = ${lead.wishListtoWin2016Dossiers}.split("\u002f"))$DossierArrayI'm still getting that same lexical error above. Even when I replace th...
Thanks Sanford.I'm playing around with it and unfortunately having some trouble. I understand I need to escape the special character "/" in order to split the string based on that - but I can't seem to even get a basic split working.Here's my code: #set ($DossierArray = ${lead.wishListtoWin2016Dossi...
Hey everyoneHow would I take a field with values separated by backslashes "/" and split it into an array that I specify? I don't think .split will do the job - something like parseStringDelimiter or $convert.toString , or perhaps a combination! Any ideas? My data looks like this:ABCD/GIST/SPITThanks...