views:

40

answers:

1

I'm trying to pass accented French characters into an email using the code below, strangely the ' character comes through Ok, but the é comes through as È, does anyone know why? Thanks!

body ="J%27ai d%E9couvert ce site et j%27ai pens%E9 qu%27il pourrait vous int%E9resser :"];

var request:URLRequest = new URLRequest("mailto:"+ testEmail + "?subject=" + testSubject + "&body="+ body);

navigateToURL(request, "_self");

A: 

Hi, does the font that you are using supports that char ?

Adrian Pirvulescu