HTML Email iOS format-detection
I've had luck with:
<style>
a[href^="x-apple-data-detectors:"] {
color: inherit;
text-decoration: inherit;
}
</style>
Yes, there is. You can use:
- Date:
<meta name="format-detection" content="date=no">
- Address:
<meta name="format-detection" content="address=no">
- Email:
<meta name="format-detection" content="email=no">
Combining them:
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="date=no">
<meta name="format-detection" content="address=no">
<meta name="format-detection" content="email=no">