Use the form below to request information or inquire about reservations.
*We will never share or sell your contact inforamtion.
if ($_POST['Travel']){ echo "
Sorry! An error was encountered while trying to send this form. Please notify us of the error by emailing dave@webbstuf.com."; }
else{
if($_POST['Name']){
// Send Email
# Configure where you want the email sent
$to = 'cvo@i-sweetwater.com, dave@webbstuf.com';
$from = 'jim@castlevalleyoutdoors.com';
$from = $_POST['Email'];
$subject = 'CVO Comment or Reservation Inquiry';
# Build Email Message
$message = 'Submission Date: ' . date('F d, Y') . "\n";
foreach($_POST as $key => $value){
$message .= ucwords(str_replace('Required ','',str_replace('_',' ',$key))) . ": " . $value . "\n";
}
$ms = mail($to, $subject, $message, "From: $from");
if($ms){
echo "
Thank you for your comment or inquiry.We will contact you as soon as possible.
";
} else {
echo "
Sorry! An error was encountered while trying to send this form. Please try submitting it again or notify us of the error by emailing jon@castlevalleyoutdoors.com.";
}
} else {
?>
}}?>