Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mailto Link Not Working in Hotmail

So I have an html email that I am creating for my company for an email campaign we are going to be sending soon for an organization we represent. It contains 2 primary links, one to email a person at the organization we represent, and one to go to the landing page on the site of the organization. The landing page link works fine, the mailto: link does not when the email is viewed from Hotmail. It works on other clients besides Hotmail including Gmail and Outlook.

This is not because the computer which I am testing on does not have an email client installed. It has Outlook 2010 installed and registered as the mailto application. When mailto links are clicked on other sites (not hotmail) they work great...outlook launches a new message window as it should and fills in the subject and email. When we went to test on Hotmail, it shows the mailto link in the status bar, but no action occurs when you click the link. It's as if the link was not a link at all.

This is the link we are trying to use: (edited slightly for privacy)

<div class="button"><a href="mailto:[email protected]?subject=Resident Requesting More Info">Email a Resident Advisor</a></div>

This is placed within an html table cell. It has some basic css styling applied (all embedded in the html email itself). The button class is just designed to make the link stand out in the email...give it a red border and bold the link.

To be much more clear:

Works:

Gmail - IE9, Chrome, Firefox

Outlook - worked.

Does not work:

Hotmail - All browsers tried

The email was sent using the preview function of CampaignMonitor (handled by our QA guy, I don't have access to it as I'm rather new to the company).

I just need to figure out a way to make this work. Thanks in advance.

like image 521
thor79 Avatar asked May 18 '12 22:05

thor79


2 Answers

Two other programmer and I spent 2 days dealing with this problem earlier this week. I don't have the relevant links handy, but the long and short of the story is that this is a known issue and currently unresolved.

mailto: links will under no circumstance, work in Hotmail, they are removed or something.

We ultimately ended up adding copy instructing recipients to email [email protected] in lieu of clicking the link.

like image 83
Rob Lowe Avatar answered Sep 22 '22 12:09

Rob Lowe


Here's a possible solution I found at http://windowsxp.mvps.org/hmposturl.htm that I modified for my purposes. It would require sending unique creative with a custom link to only your Hotmail recipients but it seems to work for me. Here's the href string I used:

http://www.hotmail.msn.com/secure/start?action=compose&[email protected]&subject=My Subject Line&body=Email Body

like image 25
Graham Avatar answered Sep 18 '22 12:09

Graham