Search code examples
htmloutlookhtml-emailoutlook-2013

href tag not working in Outlook 2013


For the life of me I do not understand why my href tags aren't working in outlook 2013. I have other anchor tags that are written the same way in the same html file. it seems that the href tags are stripped out altogether. They work in all other email clients, except outlook 2013. Is there anything I could be missing? Any help is appreciated.

																																																						<table align="center" class="inner">
<tr>																														

<td align="left" width="65">																															<a href="https://facebook">
<img src="./img/social-fb.png" width="65" style="display:block;">
</a>																															</td>
																														<td align="left" width="65">
<a href="https://www.instagram.com/">
<img src="./img/social-in.png" width="65" style="display:block;"></a>
</td>
																											</tr>
</table>


Solution

  • Try changing:

    <a href="https://www.instagram.com/">

    to:

    <a href="http://www.instagram.com/">

    Outlook may trip over https. A regular 'ol http redirects to https.