View Single Post
(#10)
Winnie Winnie is offline
Junior Member
Winnie is on a distinguished road
 
Posts: 26
Join Date: Mar 2006
Location: Mesa, Arizona
Default 04-02-2006, 01:07 PM

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?


V3.0.14