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 = "[email protected]";
 $subject = "Hi!";
 $body = "Hi,\n\nHow are you?";

$headers = 'From: [email protected]' . "\r\n" .
    'Reply-To: [email protected]' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

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

 ?>

Antworten auf die Frage(4)

Ihre Antwort auf die Frage