1

I am developing a project in French language. I have an issue on the project in mailto. I have used the below code. After clicking on the below link, the mailbox opens with the content but the mailbox does not support the French characters.
This issue happens on outlook and windows mail.

<a href="mailto:?subject=Mon projet&body=Bonjour, %0AJ’ai pensé que cette propriété pourrait vous intéresser: www.myproject.com/propriété">Mail</a>

The content shown in the mailbox.

Bonjour, 
J’ai pensé que cette propriété pourrait vous intéresser: www.myproject.com/propriété10:44

I want the below content in the mailbox.

Bonjour, 
J’ai pensé que cette propriété pourrait vous intéresser: www.myproject.com/propriété 

Please provide a solution for the above issue. Thanks in advance.

Kaiido
  • 123,334
  • 13
  • 219
  • 285
Mukesh Singh Thakur
  • 1,335
  • 2
  • 10
  • 23

2 Answers2

2

You have to use encodeURI first:

var url = "mailto:?subject=Mon projet&body=Bonjour, %0AJ’ai pensé que cette propriété pourrait vous intéresser: www.myproject.com/propriété";
url = encodeURI(url);
alert(url);
Ritesh Khandekar
  • 3,885
  • 3
  • 15
  • 30
1

var url = "mailto:?subject=Mon projet&body=Bonjour, %0AJ’ai pensé que cette propriété pourrait vous intéresser: www.myproject.com/propriété";
url = encodeURI(url);
alert(url);
document.write("<a href='"+url+"'>Mail</a>");
Ritesh Khandekar
  • 3,885
  • 3
  • 15
  • 30