Link to section not working on HTML-rich Outlook email -


i sending email table lists system exceptions catch. each row, error should link corresponding row on next table full stack trace.

so, created link (consider error code 999, example):

<a href="#e999">error 999</a> 

and, target section this:

<h2 id="e999" name="e999">error 999</h2> 

the email sent perfectly, , displayed correctly, link doesn't work @ outlook. have gone view source , copy pasted html file test on chrome, , works fine!

on research found stackoverflow answer containing tried.

any ideas?

there microsoft support page regarding how add hyperlink email message. reading it, you'll find wanted, in other words, insert bookmark in current message.

as way troubleshoot issue, follow steps, , create bookmark manually, test if work... , worked! so, why did work? viewing generated working source code, you'll find difference: seems outlook support anchors targets:

link section:

<a href="#e999">error 999</a> 

target section:

<h2><a id="e999" name="e999">error 999</a></h2> 

pheeew! - everything's working now!


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -