Ciao a tutti. Ho un problema con uno script php che invia mail:
Codice PHP:
<?php
function inviaEmail($input) {
$oggetto = $input['oggetto'];
$titolo = $input['titolo'];
$testo = nl2br($input['testo']);
$destinatari = $input['destinatario'];
$messaggio = '<body><table style="text-align: left; width: 600px; margin-top:20px;" border="0" cellspacing="0" align="center" cellpadding="0">
<tbody><tr><td colspan="2"><img src="images/head.jpg" alt="" width="600" height="47" /></td>
</tr><tr><td colspan="2" width="600"><table style="text-align: left; width: 600px;" border="0" cellspacing="0" cellpadding="0">
<tbody><tr><td height="15"></td></tr><tr>
<td style=\"font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">Perch&egrave; giocare a minecraft ~ 15 Maggio 2012</td></tr>
<tr>
<td style="font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">'
.$titolo.'</td></tr><tr>
<td style="font-size: 11px; font-family: arial, sans-serif; color: #767b83;">'
.$testo.'</td>
</tr><tr><td height="25" valign="middle"><hr /></td></tr><tr>
<td style="font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">Section header</td>
</tr><tr><td height="20"><hr></td></tr>
<tr style="font-size: 11px; font-family: arial, sans-serif; color: #767b83;"><br>
<center>Questa E-Mail ti &egrave;<br>Ti &agrave; stata inviata questa E-Mail perch&egrave; hai compiuto qualche azione su PianetaMinecraft.it - Se non
desideri pi&ugrave; ricevere alcuna mail, <a href="http://pianetaminecraft.it/cancellami.php">semplicemente cancella la tua registrazione.</a></center>
</tr></tbody></table></td></tr></tbody></table></body>'
;

/* Per inviare email in formato HTML, si deve impostare l'intestazione Content-type. */
$intestazioni = "From: PianetaMinecraft.it <noreply@pianetaminecraft.it>\r\n".
"MIME-Version: 1.0" . "\r\n" .
"Content-type: text/html; charset=UTF-8" . "\r\n";

mail($destinatari, $oggetto, $messaggio, $intestazioni);
}

$valori['oggetto'] = 'Test email è bello!'; // Approfitto per vedere se gli accenti funzionano bene
$valori['titolo'] = 'Test testo :D';
$valori['testo'] = 'ccc omaigod omaigod whatariu doing lokl soidj oidj woiewennfweoif weof ewfweoifj wefoiwe f iwfh egiouhe werur iufh dfiuh fdifh fdhfdfdsdf vih dfsdihfdidfihoiuhf hf dsuhsfodhohpo';
$valori['destinatario'] = 'Edo98 <edo98@censurato.it>';

inviaEmail($valori);
?>
Quando invio questa mail Thunderbird mi mostra questo:
Codice:
MIME-Version: 1.0

Content-type: text/html; charset=UTF-8
Message-Id: <20121003144802.C774B14C00E@pianetaminecraft.it>
Date: Wed,  3 Oct 2012 16:48:02 +0200 (CEST)

<body><table style="text-align: left; width: 600px; margin-top:20px;" border="0" cellspacing="0" align="center" cellpadding="0">

<tbody><tr><td colspan="2"><img src="images/head.jpg" alt="" width="600" height="47" /></td>

</tr><tr><td colspan="2" width="600"><table style="text-align: left; width: 600px;" border="0" cellspacing="0" cellpadding="0">

<tbody><tr><td height="15"></td></tr><tr>
<td style=\"font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">Perch&egrave; giocare a minecraft ~ 15 Maggio 2012</td></tr>
<tr>
<td style="font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">Come creare una torta buona :)</td></tr><tr>
<td style="font-size: 11px; font-family: arial, sans-serif; color: #767b83;">ccc omaigod omaigod whatariu doing lokl soidj oidj woiewennfweoif weof ewfweoifj wefoiwe f iwfh egiouhe werur iufh dfiuh fdifh fdhfdfdsdf vih dfsdihfdidfihoiuhf hf dsuhsfodhohpo</td>
</tr><tr><td height="25" valign="middle"><hr /></td></tr><tr>
<td style="font-size: 16px; font-weight: bold; font-family: arial, sans-serif; color: #3B8400;" height="25">Section header</td>
</tr><tr><td height="20"><hr></td></tr>
<tr style="font-size: 11px; font-family: arial, sans-serif; color: #767b83;"><br>
<center>Questa E-Mail ti &egrave;<br>Ti &agrave; stata inviata questa E-Mail perch&egrave; hai compiuto qualche azione su PianetaMinecraft.it - Se non
desideri pi&ugrave; ricevere alcuna mail, <a href="http://pianetaminecraft.it/cancellami.php">semplicemente cancella la tua registrazione.</a></center>
</tr></tbody></table></td></tr></tbody></table></body>
Qual'è il motivo?