When I use the following code
<?php
mail("neill@hogarth.de", "test", "a test mail", "xyz@abc.com");
?>
the mail reaches me but the mail function returns the following error:
Warning: Mail delivery program returned with exit code: -1 in /usr/local/etc/httpd/ htdocs/hogarthd/test/mail.php on line 9
Warning: Mail delivery program returned: No child processes in /usr/local/etc/httpd/ htdocs/hogarthd/test/mail.php on line 9
The documentation suggests that -1 means the mail has not been deleivered.
Any suggestions what I am doing wrong?
Thanks!