php Mail funktioniert nicht

php Mail funktioniert nicht. Keine Fehlermeldungen. Die php.ini hat Anzeigefehler und die Show E_ALL ist ebenfalls eingeschaltet.

<?php
 $to = "test@abc.com";
 $subject = "Hi!";
 $body = "Hi,\n\nHow are you?";

$headers = 'From: test@abc.com' . "\r\n" .
    'Reply-To: test@abc.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $body, $headers);

 ?>