After sending a test email to Outlook and opening it in the Outlook iOS app, I noticed that the default style of the text for dates/times appears with its own color.
https://i.sstatic.net/iydYd.png
(The white/gray part is only to conceal the text, revealing the green-ish underline text (which represents a date and time).
Since apps don't allow debugging, it's challenging to determine which class might have been applied to the displayed HTML.
Is there a way to prevent this behavior and have the text display the color defined in CSS?
Note: This HTML is generated using MJML. Here is the transpiled HTML for that paragraph:
<tr>
<td align="center" style="font-size:0px; word-break:break-word">
<div style="font-family:helvetica; font-size:10px;">
TEXT WITH DATE
</div>
</td>
</tr>
text-decoration: none
can remove the underline style, but changing the color (color: white
) doesn't work - even with or without!important
.