Special characters in UTF8 mailto: subject= link and Outlook

Richt222 picture Richt222 · Jun 19, 2012 · Viewed 13.3k times · Source

I'm in the last stages of re-coding a site that formally used iso-8859-1 character encoding, but now is UTF-8 throughout.

The problem is that the subject section of the mailto href link is not working with Outlook, when special characters are used. I get the usual garbled character representations, indicative of an obvious character encoding issue when the link is clicked and the new mail window pops up in outlook.

I've tried rawurlencode() to fix ths issue, but this doesn't seem to work with Outlook...

<a href="mailto:[email protected]?subject=<?=rawurlencode($subj);?>">send email</a>

So then thought, Outlook must insist on a different encoding, and tried utf-8 decoding the subject string first...

<a href="mailto:[email protected]?subject=<?=rawurlencode(utf8_decode($subj));?>">send email</a>

Bingo! Works great Outlook. But now fails in everything else :(

I can't find a solution that works accross all mail clients.

It worked fine across all mail clients when the whole page was displayed in iso-8859-1. But not when the page content is utf-8.

Unfortunately the client wants to retain this direct email link, despite having a functioning mail form directly beneath it!

Is there a happy solution to this?

Answer

Deyan Sarahoshev picture Deyan Sarahoshev · Jul 26, 2012

If you use utf-8 try this:

<?php $subject = "=?UTF-8?B?" . base64_encode($subject) . "?="; ?>