Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
If you can use the REST API, you could use the update snippet content API to continuously update a single snippet which is placed in your email. i.e. Grab the current contents of the feed, put it into the body of the API call, send to Marketo, snippet is updated with current content.
There is a ton of content on how to create html emails all over the web. The challenge is creating a single email that is compatible and looks good across multiple clients and platforms.Succinctly in reply to your questions though:Delete any
Quite easy to do with some html and javascript knowledge. You would also need some Marketo forms API knowledge.A basic scaleable solution would be to use onclick in the tag that opens the lightbox form Video 1
Video 2
Video 3
If you must see the program statuses you've set, then you should be cloning an email program for each email to be sent. Multiple email programs can be nested inside a default program for overall reporting.There's the hassle of activating a set of smart campaigns for every email program though if you...
If you must - publish the page, visit the page and open your browser's inspector tool to find the class or id for the elements you want to change. In FF, Chrome and IE, you can right click anywhere on a page and click "Inspect".If you're more advanced, you can drag a html wysiwyg element onto the la...
Do you have Salesforce integrated with your Marketo?
Are you able to paste your request body?Regarding the 200 OK response, I think Marketo will send that all the time, you need to debug by looking in the response body for "success":true or "success":false. I use Postman for my REST API testing to see this:{ "requestId": "6b99#1631472ac50", "suc...
We use webhooks to php files to transform Marketo data like standardising phone numbers and States. If you want to go down this path, you'll need a server to host the php file, which most people with a website should already have.Basic code for what you want is:In Marketo you'll need create a webhoo...
Hi, without seeing the actual email template/draft in your Marketo one can only guess. It definitely would not be because of hotmail/gmail/yahoo as Marketo compiles the HTML email before it's sent.Just wondering how you have included the unsubscribe link in your email? doesn't work, worksThere could be numerous other causes though
Because pre-fill is on, Marketo will look up the current value of unsubscribed (which will be 'unchecked') in the database and will load the form with the checkbox unchecked and when a person submits the form, they're not unsubscribing from anything.Another way of explaining it, if you have the unsu...