Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
This is really slick, thanks for posting this concept and the code to dig into.I think the flip and reveal part turned out really sharp -- good stuff here, you got my gears spinning with this one!
Hey Mike, In code, this sort of thing can be accomplished by using the box-shadow css property to create that drop-shadow. However, in the email universe this is not well supported enough to display consistently across the most popular inboxes. Here's a link to a site called "Can I Email" which hel...
From my understanding, the mktoActive attribute determines if the module appears in the modules tab in the sidebar and the mktoAddByDefault attribute determines if the module should display in an email using this template at creation. (true=visible, false=hidden, for both)From my experience, your un...
This sounds too good to be true!! I've seen a bunch of email tools come and go and the good stuff is usually expensive so it kind of sets off a red flag for me here. I don't know that you've got to pay 10k per year per user for good stuff, but from what I've seen in the past -- you really do get wha...
... or the opposite route -- you could include an 'href' for tracking purposes and then use a script to do something else (download) when the link is clicked kind of like what you're using now for the download action?Reference: https://stackoverflow.com/questions/1768124/executing-javascript-when-a-...
@jtanusri @hpavlac there's another post in the community here:https://nation.marketo.com/t5/product-discussions/marketo-email-issues-on-outlook-for-mac/m-p/335475/highlight/false#M189632 where something similar came up and this approach seems to have solved the issue there. Let me know if you need a...
Awesome, thanks for testing that out and giving me some feedback here - appreciate it!
From what I've seen this has something to do with using the align="_____" (left/right) on two adjacent tables to create columns. I think you can solve this issue for Outlook by adding a float style to the tables to match the align attribute. Where you've got align="left" use style="float:left;" and ...
You might trying moving the inline CSS from the to the where you'd actually need the "words" to break. Im not sure if the will inherit the properties of a parent for wrapping text in Outlook or not?As an alternative, you could try just using the text "Click Here" (or something like that) inside the element (as linked text) and then separately below the link include the string to copy/paste, or choose one or the other?I'd think if the button link didn't work for a user that just adding a string to copy/paste would work better than including a redundant link around the string (which didn't work on the button) in the first place?You might also consider trying to use the string inside different parent elements like:
^ no element, just text inside a paragraph with a colored span around the link stringoras the parentor
If the button above doesn’t work, paste this link into your browser:
from the link text using different parent elements.Without testing any of these, I'd guess that the closer you get to having the inline style directly wrap the string, the closer you're chances of success. Likewise, the more nested the elements, the less likely it's behave the way you'd expect in email -- specifically Outlook. Let me know if any of these solutions worked for you?