To see the current openings, please check the
careers page.';
} elseif ($status == "" || $form_valid != 1) {
if ($status != "" && $name_valid == 0) {
echo '
Please enter a valid name!
';
}
if ($status != "" && $email_valid == 0) {
echo '
Please enter a valid email address!
';
}
echo <<< EOS
To request information about an opening, please use the request form below:
EOS;
} else {
mail('careers@proteligence.com', '[WEBSITE] Career request for ' . stripslashes($_POST['opening']), stripslashes("Name: " . $_POST['name'] . "\n\nEmail: " . $_POST['email']), 'Reply-To: ' . stripslashes($_POST['email']) . "\r\n");
echo <<< EOS
Thank You
Your message has been sent. We will be in contact with you shortly.
EOS;
}
?>