vote up 0 vote down star
1

I'm trying to create a mailto link that contains french accented characters as the subject and email body. Both HTML and URI encoding the chars does not work. Here is my code:

<a href="mailto:%20?subject=ce%20titre%20est%20cass%C3%A9.&body=travaux%20deja!%20cesser%20d'%C3%AAtre%20t%C3%AAtu">SEND EMAIL</a>

Same result occurs without URI encoding:

<a href="mailto:?subject=ce titre est cassé&body=travaux deja! cesser d'être têtu">SEND EMAIL</a>

No Matter how i do it, the new email opens up with the broken characters. URI encoded Spaces and line-breaks work fine, but anything that is not ANSI is broken. I should note that I am testing in both english and french versions of MS Outlook 2007. Anyone know how to get this to work?

flag

75% accept rate

2 Answers

vote up 0 vote down

Got it! This may or may not be a bug in Microsoft Outlook/Entourage. I changed my default mail reader to Mail.app and it works beautifully with urlencoding. The (maybe) bug only appears to affect one of the 2 accented e characters in your example. Perhaps Outlook/Entourage is not handling miltibyte UTF8 chars correctly?

link|flag
I think you are right, see the link in my comment above. It seems that there is no specified operation on the side of the email reader in the URL spec. Mail.app, may have just gone 'above and beyond' for the sake of international usability. But if Outlook 2007 can't do this, its not reliable enough to put into production. Unless I hear about a magic &charset=UTF-8 parameter, this one is dead. – Armitage Sep 24 at 17:00
A more detailed post is here: stackoverflow.com/questions/974558/… – Armitage Sep 24 at 17:03
vote up -1 vote down

Everything in mail header (including subject) must be MIME-encoded according to this RFC,

http://www.ietf.org/rfc/rfc2047.txt

It's not trivial to do this but you can find code to handle it in most languages.

The properly encoded text looks like this,

=?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=

EDIT: Try this to see if it's what you want,

<a href="mailto:your@email.com?subject=%3d%3fISO-8859-1%3fB%3fY2UgdGl0cmUgZXN0IGNhc3Pp%3f%3d&Content-Type=text%2fplain%3b+charset%3dISO-8859-1&body=travaux%20deja!%20cesser%20d'%C3%AAtre%20t%C3%AAtu">SEND EMAIL</a>

Replace email with your address.

link|flag
The OP is not forming an email in this example. He's forming a mailto link. That spec has nothing to do with his context. – Asaph Sep 24 at 15:49
Please read RFC before you downvote. This RFC is about headers, not mail bodies. The Subject must be encoded like this to show up correctly in mail agent. – ZZ Coder Sep 24 at 15:51
I believe that is the responsibility of the email agent, not the html page. If you encoded it in the html page too, I think you would end up with a doubly encoded string. – Asaph Sep 24 at 16:30
I really think ZZ Coder is onto something regarding mime types. But Asaph is correct, this doesn't answer my question. How can I change a mimetype from a mailto link? I'm not sure its possible. – Armitage Sep 24 at 16:36
What is the mime-type of your html page? you can specify a charset for the whole page like this: Content-Type: text/html; charset=UTF8 – Asaph Sep 24 at 16:39
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.