include("/home/u4/sjohns4/html/includes/global.php");
switch ($_POST['action']){
case "contact":
//if($_POST['email']!=''){
$req = array("name","email","phone","contactme");
foreach($req as $field){
if(!$_POST[$field]){
$warnings[$field] = '
required
';
}}
if(count($warnings) > 0){
$alert_msg = 'Please fill in all required fields.
';
}else{
//$name = $_POST['name'];
//$email = $_POST['email'];
//$msg = $_POST['msg'];
$sendInfo = $_POST['contactme'];
if($sendInfo=='yes'){
$willcontact = '
Someone will be in contact with you soon regarding your request.';
}
$message = "\n\n$name has sent a message regarding Scarlet Crane Creations:\n\n";
foreach($_POST as $key=>$value){
$message .= "$key:\n$value\n\n";
}
mail('shayla@scarletcrane.com','Scarlet Crane Inquiry', $message);
$alert_msg = 'Thanks! Your message has been sent. '.$willcontact.'
';
}
//}else{
//$alert_msg = 'Please enter your email address.
';
//}
break;
default: break;
}
//variables
$window_title = "Bookmark Cards, Postcard Greetings, Unique, Smart, Fun, Stationery & Gifts :: Scarlet Crane Creations : Contact";
$banner = "contact";
$bg = "container2";
//$alert_msg = $_POST['email'];
?>
include('_header.php')
?>
Contact Us
if($wholesale==1){ ?>
We'd love to hear from you. If you're interested in wholesale orders, simply call us or download our PDF order form and fax your order to 866.589.8275.
You may also fill out the form below to request a catalog.
Scarlet Crane Creations
Attn: Shayla Johnson
2730 N Troy, Unit 1
Chicago, IL 60647
}else{ ?>
If you have any questions or comments, we'd love to hear from you.
} ?>
Email info@scarletcrane.com Phone 773.987.6527
include('_footer.php')
?>