Hola... llevo muxo tiempo mirando el foro, los documentos y tal... pero soy incapaz de solucionar este problema... asiq me decidido a poner un post!

Ojala alguien me pueda ayudar!

Tengo este archivo, correo.php

Código :

<?php                                                                  
$fecha = date("d-M-y H:i");
$contenido='
<html>
<head>
<title>Formulario</title>
<style type="text/css">
     <!--
       body {
          font-family: Arial;
          font-size: 8px;
          color:#000000;
       }
       -->
</style>
</head>
<body link="blue" vlink="red" alink="green">
<table width="700" height="500" border="0" align="center">
        <tr> 
          <td width="700" height="30" align="center" valign="top"> 
            <p><strong>CONTENIDOS DEL FORMULARIO</strong></p></td>
        </tr>
        <tr> 
          <th width="700" height="300"><table width="550" height="300" border="1">
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>NOMBRE ALUMNO:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$nom_alum.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>APELLIDO1 ALUMNO:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$ape_alum1.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>APELLIDO2 ALUMNO:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$ape_alum2.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>FECHA NACIMIENTO:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$dia.'-'.$mes.'-'.$ano.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="top"> 
                  <p>CURSO ACTUAL:</p></td>
                <td width="500" height="20" align="left" valign="top"> 
                  <p>'.$curso.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="top"> 
                  <p>MOTIVOS:</p></td>
                <td width="500" height="20" align="left" valign="top"> 
                  <p>'.$motivo.'</p></td>
              </tr>
              <tr> 
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>NOMBRE TUTOR:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$nom_tut.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>APELLIDO1 TUTOR:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$ape_tut1.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>APELLIDO2 TUTOR:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$ape_tut2.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>EMAIL TUTOR:</p></td>
                  <td width="500" height="20" align="left" valign="middle"> 
                  <p><a href="mailto:'.$mail_tut.'">'.$mail_tut.'</a></p></td>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>TELEFONO TUTOR:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$tel_tut.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>RECIBIR INFO:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$info.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>CODIGO POSTAL:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$cp_tut.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>PROBAR PROFESOR:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$prof.'</p></td>
              </tr>
              <tr> 
                <td width="200" height="20" align="left" valign="middle"> 
                  <p>HORARIOS:</p></td>
                <td width="500" height="20" align="left" valign="middle"> 
                  <p>'.$horario.'</p></td>
              </tr>
            </table></th>
        </tr>
</table>
</body>
</html>
';
$servidor2="[email protected]";
mail($servidor2, 'Formulario de contacto',$contenido,"MIME-Version: 1.0\nContent-type: text/html; charset=UTF-8\nFrom: $nom_tut < $mail_tut >");
$mensaje = '
<html>
<head>
<title>Confirmaci&oacute;n de envio del formulario de la web</title>
<style type="text/css"> 
     <!--
       body {
          font-family:Arial;
          font-size: 8px;
          color:#000000;
       }
       -->
</style>
</head>
<body link="blue" vlink="red" alink="green"> 
      <table width="550" height="250" border="0" align="center">
          <td width="550" height="250">
            <p><font color="003399"><b>'.$nom_alum.'</b>, 
            gracias por rellenar el formulario.</font></p><br>
            <p>Su correo ha sido recibido  y ser&aacute; respondido a la mayor brevedad.<br>
            Este correo confirma su env&iacute;o efectuado desde nuestro formulario 
            de contacto. </p><br>
            <p>Este formulario ha sido enviado el '.$fecha.'<br>
            Muchas gracias.</p>
          </td>
</table>
</body>
</html>
';


$cabeceras  = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
$cabeceras .= 'From: UnaEducamos < [email protected] >' . "\r\n";
mail ($mail_tut, "Correo recibido por UnaEducamos, gracias",$mensaje,$cabeceras);
print "&email=ok";
?>


Y el formulario esta exo en flash... relleno unos datos y se envia... Todo funciona bien pero las letras con acento salen mal, como puedo solucionarlo????

GRACIAS!