Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Basic question here, but have a Velocity script where the output copy uses '$' to designate dollars. Is there anything special to do so this doesn't break anything?I've tested and it seems to work, but I know in Velocity that designates a variable so want to ensure it is just straight text and doesn...
To clarify, when you say multiple records of individuals under a single email address, you mean you have purpose duplicates in your system, right? Or are you talking about multiple custom object records associated with a single person record? Batch campaigns have a safety feature wherein they will p...
Hmmm I like that idea - it's at least a good start. Not to mention we should probably prioritize our emails based on need in terms of what someone SHOULD receive versus not.Thank you for the idea!
Looking for some advice/suggestions here - We utilize custom objects and unfortunately have cases where there can be multiple records of individuals under a single email address Lead. We also tend to send a hefty number of trigger and batch emails based off of met criteria. Our current communication...
Nevermind, solved my own issue 🙂Needed to add "#set ( $void = $firstNames.add("Wings Member") )" after the #else parameter.Duh! 🙂
Hello, this might be a very simple question, but running the following personalization script: ##Standard Velocity Date/Time Fields#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Chicago") )#set( $defaultLocale = $date.getLocale() )#set( $calNow = $date.getCalendar() )#set( $ret = ...
Got it - makes sense in context. In this case though I'm trying to output the URL from a custom object field so there's potentially x number of records in the object and each URL would be different - well at least a different query at the end. Technically it should only find one relevant URL per the...
Hello all, not sure if I am crazy or doing something wrong - but running into issues when using a #foreach script with the end result being a URL. Here's my basic test case: ##Standard Velocity Date/Time Fields#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Chicago") )#set( $defa...
Hello,That is exactly what I was trying to double-check. I wasn't sure if when someone clicked a link tied to a script that had specific date parameters if it would re-run/check the scripting on load. Let's say promo runs from 6/1-6/5. Email goes out on 6/1, but recipient doesn't click the link unti...