Hi - I am almost there!!
I am now getting a reply email but with just headings and no content? Have I done anything wrong with the php file?
<?
$msg = "E-Mail Sent From www.company1.net\n";
$msg .= "Sender's Name:\t$sender_name\n";
$msg .= "Sender's Email:\t$sender_email\n";
$msg .= "Message:\t$message\n\n";
$to = "postmaster@rbcserver.net";
$subject = "Web Site Feedback";
$mailheaders = "From: My Web Site <> \n";
$mailheaders .= "Reply-To: $sender_email\n\n";
mail($to, $subject, $msg, $mailheaders);
?>
<html>
<head>
<title>Simple Feedback Form Sent</title>
</head>
<body>
<h0>The following e-mail has been sent:</h0>
<p><strong>Your Name:</strong><br>
<? echo "$sender_name"; ?>
<p><strong>Your E-Mail Address:</strong><br>
<? echo "$sender_email"; ?>
<p><strong>Message:</strong><br>
<? echo "$message"; ?>
</body>
</html>
Yours
Russell