Ciao a tutti.
Ho la necessità di inviare con php delle e-mail (in formato HTML) destinate al giappone.
Per l'invio tutto funziona perfettamente e tutti gli elementi html sono visualizzati normalmente. Il problema è che il testo in giapponese (inserito in paragrafi) appare come una serie di caratteri senza senso.
Premetto che le mail di prova sono aperte tutte su un computer giapponese.
C'entra forse il charset-iso??
Posto comunque l'intero codice:

Codice:
<?

$from = $_POST['from'];
$to = $_POST['to'];
$sub = $_POST['sub'];
$content = $_POST['content'];
$content = stripslashes($content);

$html = <<<HTML
<html>
<head></head>
<body>
<style type="text/css">
a {color: #3366cc; }
.txt {color: #3366cc; }
</style>
<center>
<table width="500" border="0" cellspacing="0" cellpadding="4">
<tr>
<td colspan="3" align="center"><span class="txt">Questa Email &egrave; inviata dal sito<br>
www.luyo.it</span></td>
</tr>

<tr>
<td width="120"></td>
<td width="260" align="center">$content</td>
<td width="120"></td>
</tr>

<tr>
<td colspan="3" align="center"><a href="http://www.luyo.it/" target="_blank">
<img src="http://www.luyo.it/immagini/e-card.jpg" width="400" height="300" alt="luyo.it" border="0"></a></td>
</tr>

<tr>
<td colspan="3" align="center"><a href="http://www.luyo.it/" target="_blank">
www.luyo.it</a></td>
</tr>

</table>

</center>
</body>
</html>
HTML;


$headers = "FROM: $from\n";
$headers .= "Return-Path: $from\n";
$headers .= "MIME-version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "Content-transfer-encoding: 7BIT\n";
$headers .= "Content-description: Mail message body\n\n";

if(!(@mail($to, $sub, $html, $headers)))
  echo "<p><b>Invio E-mail non riuscito !!</b></p>";
?>