Copyright 2007. All Rights Reserved.
'."\n";
$headers .= 'Reply-To: <'.$email.'>'."\n";
// recipient address
$to = "bryan@sdmfg.com";
// subject of email
$re = "Contact Us Form Delivery";
// message creation
$contact = "Name:".$name."\nEmail:".$email."\nPhone:".$phone."\n";
$txt = "Comments:".$comments."\n";
$fmsg = $contact."\n".$txt;
$msg = wordwrap($fmsg, 70);
// send email
mail($to,$re,$msg,$headers);
?>