Contact R&D Precision Diamond Tool, LLC

- Telephone
- (603) 978-1790
- Snail Mail
-
R&D Precision Diamond Tool, LLC
25 Old Dover Road, Suite 2
Rochester, NH 03867 - For a quote on an end mill, please fill in ALL dimensions in the drawing below. All dimensions are in inches. For quotes on inserts, please include the nomenclature (i.e. VNMG331) in the Questions/Comments field.
//Begin Configuration
// Your email
$to = "djacobs@rddiamondnh.com";
// Server name, to display in the headers
$server_name = "RDDiamondNH";
//End Configuration
if (!empty($_POST['send']) || !empty($_GET['send']))
{
$action = (!empty($_POST['send'])) ? $_POST['send'] : $_GET['send'];
}
else
{
$action = '';
}
$build_message = false;
if($action != "")
{
$build_message = true;
$message = trim($_POST['message']);
$name = trim($_POST['name']);
$email = trim($_POST['email']);
$phone = trim($_POST['phone']);
$subject = trim($_POST['subject']);
$OAL = trim($_POST['OAL']);
$cuttingDia = trim($_POST['cuttingDia']);
$neckDia = trim($_POST['neckDia']);
$shankDia = trim($_POST['shankDia']);
$pcdLength = trim($_POST['pcdLength']);
$neckLength = trim($_POST['neckLength']);
$cornerRad = trim($_POST['cornerRad']);
$time = time();
$date = date("F j, Y", time());
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/plain; charset=UTF-8\r\n";
$headers .= "From: $email\r\n";
$headers .= "X-mailer: " . $server_name . " Server\r\n";
}
if($build_message)
{
/* message */
$message = "Sender Name: $name\n
Sender E-Mail: $email\n
Sender Phone: $phone\n
Date Sent: $date\n\n
Message: $message \n
***Tool Details***\n
Cutting Diameter: $cuttingDia\n
Corner Radius: $cornerRad\n
PCD/PCBN Length: $pcdLength\n
Neck Diameter: $neckDia\n
Neck Length: $neckLength\n
Shank Diameter: $shankDia\n
Overall Length: $OAL";
if(mail($to, $subject, $message, $headers))
{
$result = "
Thank you! I will get back to you very soon.
"; } else { $result = "Sorry: An error occured, please try again later.
"; } } // Output a result Message print $result; ?>