Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop Outlook from rendering an email address as a mailto: link?

Tags:

I am creating an HTML email to be sent to a user. If there is a valid email address to within an HTML email, Outlook will render it (normally helpfully) as a mailto: link. Unfortunately, that's not the desired behavior in the particular email I'm sending.

How do I stop Outlook from doing this?

like image 792
Josh Kodroff Avatar asked Jan 21 '10 16:01

Josh Kodroff


People also ask

How do I turn off mailto?

about:preferences Applications, mailto: Select the unwanted application from the Action dropdown list. Select the Action dropdown again, but this time choose "Application Details..." Select "Remove" on the details popup. Select "Ok" This is where I expected to be done in the past, but that didn't work, so keep going.

Why does my email say mailto?

"mailto:" is a URI scheme that indicates that the following text is an email address. So it helps computers to understand the semantics of the text. This is in the same way that "http:" is a URI scheme that indicates that the following text is an address of a site that can be accessed using the http protocol.

How do you change a mailto link?

Once you've inserted a mailto link, click the linked text to open the toolbar and then click the link icon. Select Edit from the drop-down.


1 Answers

Outlook doesn't recognize this pattern as an email: @[text]@[text].[text]

Thus adding before the email:

<a style="color: black; text-decoration: none"><font style="display: none">@</font>**email**</a> 

and

<style>font {display: none}</style> 

in the <head> tag will remove the mailto link.

like image 165
hallundbæk Avatar answered Sep 22 '22 16:09

hallundbæk