Ciao, ho due pagine nello stesso sito.

Contatti.php:
$email=$_POST['email'];
$oggetto=$_POST['oggetto'];
$messaggio=$_POST['messaggio'];
$to = 'info@miosito.it';
$headers = 'From: "'.$email.'" ' . "\r\n" .
'Reply-To: "'.$email.'" ' . "\r\n" .
'X-Mailer: PHP/' . phpversion('5.2.5');
mail($to, $oggetto, $messaggio, $headers);

reg_att.php:
$to='info@miosito.it';
$oggetto='Nuova richiesta di registrazione';
$messaggio='Hai ricevuto una nuova richiesta di registrazione da parte di '.$nome.'. Per vedere i dettagli clicca qui: www.miosito.it/nuoverichieste.php';
$headers = 'From: "'.$email.'" ' . "\r\n" .
'Reply-To: "'.$email.'" ' . "\r\n" .
'X-Mailer: PHP/' . phpversion('5.2.5');
mail($to, $oggetto, $messaggio, $headers);

Chi mi sa dire perchè il primo ( contatti.php ) funziona senza problemi e il secondo (reg_att.php) mi manda cmq la mail ma stampa:

Strict Standards: mail() [function.mail]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Paris' for '1.0/no DST' instead in...??
Grazie..