function Send_email ($to, $subject, $message, $from)
{
$from .= "";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $from \r\n\n";
mail($to, $subject, $message, $headers);
}
$to = "ffc@ffc.com.vn";
$from = @$email;
$subject=@$subject;
$content="
Name:$name
Job:$job
Company:$company
Address:$address
Country:$country
Phone:$phone
Fax:$fax
Email:$email
Comments:$content";
if(@$action == "true")
{
Send_email($to, $subject, $content, $from);
echo "\n";
}
?>