ragazzi volevo sottoporvi un problema che mi sta mandando ai pazzi:

ho realizzato un form per INVIO MAIL:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="it">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">

...

<form method="post" action="send_contact.php">
<input name="customer_mail" type="text" id="customer_mail"/> E-Mail


<input name="name" type="text" id="name"/> Nome


<input name="subject" type="text" id="subject" /> Oggetto del messaggio


<textarea name="detail" id="detail" cols="70" rows="10"> </textarea>


<input type="submit" name="Invia" value="Invia">
<input type="reset" name="Submit2" value="Cancella">
</form>

...
</head>


che richiama "send_contact.php" qui riportata INTERAMENTE:

-------------------------
<?php
// Contact subject
$subject ="$subject";
// Details
$message="$detail";

// Mail of sender
$mail_from="$customer_mail";
// From
$header="from: $name <$mail_from>";

// Email address
$to ='mail@dominioAruba.it';

$send_contact=mail($to,$subject,$message,$header);

// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
echo "Il messaggio è stato spedito con successo";
}
else {
echo "ERRORE";
}
?>
------------------------

IL PROBLEMA:
-se come destinatario inserisco il mio indirizzo di Gmail...tutto liscio
-se invece inserisco la mail del dominio Aruba...arriva questo tipo di carattere: à èìòù che stanno per àèìòù.

ho provato a cambiare charset ma c'è qualcosa di sbagliato
che no riesco proprio a vedere...potete aiutarmi?