I'm a web, database, and network architect based in NYC, with specializations in the financial services, publishing, and SaaS sectors.
I build complex Marketo integrations for companies large and small... and can make Marketo forms and emails do things you never thought possible!
Check out my blog at https://blog.teknkl.com, which has Marketo-specific technical insights you won't see anywhere else, along with wider topics from my programming and systems work.
Well, if you had a Person field called URL Field ($lead.urlField in my code) set to the first URL, the output would be the second URL. 😉
It works by
creating a Link object
sett...
Remember to use the Syntax Highlighter (“Insert/Edit Code Sample”) when inserting code so it’s readable:
I edited your post this time.
Looks like you’re using the wrong variable...
You could even tweak my method above to set Block Listed=true when the form submits (which I prefer because you don’t have to worry about the race condition of other stuff happenin...
If you’re using a Marketo form to register people, why not scan for domains you don’t want and discard that data before it even enters Marketo? (While the person still thinks they ...
Not completely following — what do you mean by “currently within SendGrid” because that implies it’s not a Marketo-owned IP to begin with. Does it belong to your company’s Autonomo...
LinkTool is what you should use for URL manipulation (don’t try to parse URLs yourself).
#set( $url = $link.uri($lead.urlField) )
#set( $void = $url.setQuery($display.alt()) )
#set...