View Single Post
Old May 27th, 2008, 11:50 AM   #6 (permalink)
TommyD
Registered User
Fresh Surpasser
 
Joined in Mar 2006
9 posts
Gave thanks: 0
Thanked 0 times
Code:
<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

I tried this version(modified, with my information). Nothing.

tom

Last edited by TommyD; May 27th, 2008 at 11:51 AM..
TommyD is offline   Reply With Quote