sbaglio o non chiudevi la funzione mail?

codice:
<?
$nombre = $_REQUEST['nombre'] ;
$direccion = $_REQUEST['direccion'] ;
$ciudad = $_REQUEST['ciudad'] ;
$telefono = $_REQUEST['telefono'] ;
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;

  mail( "mymail@mail.com", "Email dal sito mio",
        "Nombre: $nombre\nDireccion: $direccion\nCiudad: $ciudad\nTelefono: $telefono\n\nMensaje: 
         $message", 
        "From: $email");
   header( "Location: http://www.mysite.com/thankyou.html" );
?>