Okay, I finally found a script that works from hotscripts.com. Thanks nakkaya.
This is the script I'm using.
<?
$ToEmail = "strangesk1@aol.com";
$ToName = "Scott";
$EmailBody = "Sent By: $name\nSenders Email: $email\n\n
Message Sent:\n$comments\n\n";
$Message = $EmailBody;
mail($ToName." <".$ToEmail.">",$Message, "From: ".$name." <".$Email.">");
Print "_root.form.EmailStatus=Complete - Your mail has been sent";
?>
It seems to be working right, but I have one question. When the email is sent to me, in the section giving the users return email address that you would normally just be able to click reply and have it automatically put the return address in the new email, it displays dstrange@delstrange.com which is my domain where the script is being called from. Then in the subject it gives the users return email address. How can I fix this? Does anybody understand what I'm trying to say?
Thanks.
Scott