Here's my scenario:
I'm trying to embed a hyperlink in the body of an email that will be generated using the mailto hyperlink. So I will have something like this:
<a href="mailto:[email protected]?subject=Email Subject&body=Click
<a href=%22http://www.google.com%22>Here</a> to go to google.com">Click Here to open
Outlook and with generated email</a>
The problem is, this scenario will open outlook but the email will actually appear as:
Click <a href="http://www.google.com">Here</a> to go to google.com
the http://www.google.com will be clickable in the email but the anchor tag will also show up and it is ugly.
I'm not sure if this is possible, but can I somehow create this hyperlink in a way that Outlook won't catch the URL address and automatically create the anchor tag around it?