ok i can give you what i have
my apologizes if looking stupid
<body>
<?
// Your Email Address
$empf="enquiries@mat.com.au";
// Message Send to Sender
$vtext="Thank you for contacting Us, Your e-mail has been recieved and we will get back to you as soon as possible!";
//The subject you recieve
$betreff="Email From mat.com.au ";
// Information in the email you recieved.
$anrede="The Following Information was sent via my web site:";
// Sending Confirmation to sender / subject line
$bestaetigung="Thanks for Contacting mat.com.au";
//
$message=str_replace("\\\"","\"",$message);
$message=str_replace("\'","'",$message);
urlencode ($text);
$message=str_replace("%0D","\n",$message);
//
$report = "Email Sent Via:"."\n"."---------------------------------"."\n\n"."remote host: ".$REMOTE_HOST."\n".
"remote adr: ". $REMOTE_ADDR."\n"."browser: ". $HTTP_USER_AGENT."\n\n\n\n";
//
$inhalt=$anrede."\n\n"."Name: ".$name."\n"."E-Mail: ".$email."\n"."Website: ".$website."\n"."Telephone: ".$telephone."\n"."Fax: ".$fax."\n"."Address1: ".$address1."\n"."Address2: ".$address2."\n"."City: ".$city."\n"."State: ".$state."\n"."Zip Code: ".$zip."\n"."Country: ".$country."\n"."Message: ".$message."\n\n\n\n".$report;
//
mail($empf,$betreff,$inhalt,"From: ".$email);
mail($email,$bestaetigung,$vtext,"From: ".$empf);
//
?>
</body>
|