i have copied the following mail script direct from manual
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
if (mail('oliverwaring@talk21.com', 'My Subject', $message) == FALSE)
{echo "failed";}
?>
i try to run on my testing server (with no mail server)
and i get the echo failed
i try to run on my web server and recieve no errors at all,
i dont recieve any mail at all.
webserver is apache (1.3.33 (Unix))
i control it via cPanel X v2.5.0 do i need to do somthing further to the server to send mail???
btw, i have also checked all spam folders!!