I am developing an HTML email and I've noticed that some email clients, particularly Mac Mail and the Mail app on iOS 7, automatically wrap addresses and phone numbers in anchor tags.
I've read that adding these meta tags should disable this behavior:
<meta name="format-detection" content="address=no" />
<meta name="format-detection" content="telephone=no" />
However, these don't seem to be working and I haven't been able to find the "address=no" anywhere in Apple's documentation. Does it having something to do with the order of meta tags? Does it matter if they are before or after the title tag?
Is there another solution?