I have PHP 5 on Solaris 10 web server using Apache.
None of my email attempts work:
<?php$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers)...