Contact

Address

Home office location:

30 Fish Dancer Court
Bluffton SC 29910 USA

Contact Us

Phone: +1 860-536-5099 (til 9/20)
Mobile: +1 860-303-1831

tina@kelsey-creative.com


'; } } else { $errors .= 'Please enter your name.
'; } if ($_POST['contact-email'] != "") { $email = filter_var($_POST['contact-email'], FILTER_SANITIZE_EMAIL); if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $errors .= "$email is NOT a valid email address.

"; } } else { $errors .= 'Please enter your email address.
'; } if ($_POST['contact-subject'] != "") { $_POST['contact-subject'] = filter_var($_POST['contact-subject'], FILTER_SANITIZE_STRING); if ($_POST['contact-subject'] == "") { $errors .= 'Please enter a subject.
'; } } else { $errors .= 'Please enter a subject.
'; } if ($_POST['contact-message'] != "") { $_POST['contact-message'] = filter_var($_POST['contact-message'], FILTER_SANITIZE_STRING); if ($_POST['contact-message'] == "") { $errors .= 'Please enter a message to send.
'; } } else { $errors .= 'Please enter a message to send.
'; } if (!$errors) { $mail_to = 'tina@kelsey-creative.com'; $subject = "Website Query: " . $_POST['contact-subject']; $message = 'From: ' . $_POST['contact-name'] . "
"; $message .= 'Email: ' . $email . "

"; $message .= "Message:
" . stripslashes($_POST['contact-message']) . "

"; $header = "From:" . $email . "\r\n" . "MIME-Version: 1.0\r\n" . "Content-Type: text/html; charset=UTF-8"; mail($mail_to, $subject, $message, $header) or die("Error!"); ?>
Success! Thank you for your email.
Error!