I created a test.php, went to the page (which was completely blank)
PHP Code:
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
'Reply-To: [email protected]' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
</span> </span> </div>
and received this
From: [email protected]
Subject: the subject
Message Body: hello
should something else have happend or should I have been able to see something other than a blank screen when I went to that test.php page?