thanks! it was helpful!
what i used is make the action of the form send to a php page....
but i have a problem the sending of email is already working but the format i get in my email doesn't work..
this is the message i receive in my email
Quote:
|
<u>message of the customer: </u>hello i want to order<br/><u>contact of the customer: </u>9872349<br/><u>From: </u>michael
|
here is the code of my php page
Code:
<html>
<body>
<?php
$to = 'email@yahoo.com';
$email = $_REQUEST['email'] ;
$subject = 'INquiry' ;
$message = "<u>"."message of the customer: "."</u>".$_REQUEST['message'].
'<br/>'."<u>"."contact of the customer: "."</u>".$_REQUEST['contact'].
'<br/>'."<u>"."From: "."</u>".$_REQUEST['name'] ;
$headers = 'From: '.$_REQUEST['name'] ;
echo "Your customer's email add: ".$email."<br/>". "subject of the email: ".$subject."<br/>" .$message."<br/>" .$headers;
mail($to,$subject,$message,$headers);
?>
</body>
</html>