Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Yep, that is what we had to do (add the code in the tokens)
Not user groups - the private groups (aka your company one).
Good question. I haven't actually tried that as we weren't isn't subject line personalisation.I may try later.
Since we went live with Jive, has anyone got any idea of how the members of the spaces/group(s) have been decided?! It seems that there are a mix of actual users and other people in there?!
Np - happy to help. Also be wary that Velocity script tokens CANNOT be used in dynamic content / emails via Marketo Segmentations. It is pretty much only for standard/static style programs.
From what I can see - the MSI can be "used" by anyone i.e. History etc- the limitations come when you want the Sales team to begin true SFDC / Marketo integration via Email sends etc.
The feature you are talking about is a new feature released as part of the SFDC Spring 15 roll-out. The feature is Salesforce only so there would be nothing stopping Marketo creating a duplicate (as the example you give is two separate emails addy's). your best logic would be to warn rather tha...
Not entirely sure what the question is - are you asking how to get the/your token? It is pretty simple if so - just access this URL:https://YOURENDPOINT.mktorest.com/identity/oauth/token?client_secret=YOURCLIENTSECRET&grant_type=client_credentials&client_id=YOURCLIENTIDAs noted you will need 3 valu...
I think in either case you will want to check the length of the value before outputting it so you do not get a strange output.Also - just so you are aware you can combine multiple logic blocks to (AND/OR) things should you need to thus (this is just for demo re: Velocity as I wouldn't recommend doin...
You will need to do this via Velocity Script. Should be fairly simple as a program token. try this:#set ($lengthTest = ${lead.FirstName})#if ( $lengthTest.length() <= 1 )"Thanks for coming, Customer. Hope to see you next time"#else"Thanks for coming, ${lead.FirstName}. Hope to see you next time"#...