session_start();
$blockPostLogging=Yes;
//---------------------------- Sallys Quick Configurations ---------------------------------------//
$captcha = 1; // 1 = Show Captcah | 0 = No Captcha
$email_owner = "gyoung20@tpg.com.au"; // Where to send forms (clients email not visiotrs)
//$email_owner = "info@gabrielleyoungartist.com"; // Where to send forms (clients email not visiotrs)
$email_subject = "Gabrielle Young Artist Enquiry"; // Subject of email being sent to client
$email_name = "Gabrielle"; // Name of the site owner (so we can say Dear ???,)
$button_text = "Submit"; // Text to display on the submit button (eg: Send, Submit)
$redirect_to = "thankyou.php"; // Where to send the visitor after successful submit
//-------------------------------------------------------------------------------------------------//
$strAction = $_POST["hidAct"];
$contact_error ="";
if($strAction=="Submitfrm")
{
// COLLECT FORM FIELDS HERE
$str_name = $_POST["name"];
$str_email = $_POST["email_address"];
$str_phone = $_POST["phone"];
$str_comment = $_POST["comment"];
// ENSURE COMPULSORY FIELDS ARE NOT EMPTY
if($str_name=="") {$contact_error.="• You have not supplied your name. ";}
if($str_email=="") {$contact_error.="• You have not supplied an email address. ";}
if($str_phone=="") {$contact_error.="• You have not supplied a phone number. ";}
if($contact_error=="")
{
#Mail contents
$message = "
Dear $email_name,
$str_name has contacted you.
Details are as below:
Name:
$str_name
Email:
$str_email
Phone:
$str_phone
Comment:
$str_comment
".$_SERVER['REMOTE_ADDR']."
";
$strMailHeaders = "From: 'Enquiry ' \n";
$strMailHeaders .= "Cc: 'Support' \n";
$strMailHeaders .= "Reply-To: $str_email\n";
$strMailHeaders .= "Content-Type: text/html;";
if(($_SESSION['security_code'] == $_POST['security_code']) && (!empty($_SESSION['security_code'])) )
{
unset($_SESSION['security_code']);
mail($email_owner,$email_subject,$message,$strMailHeaders);
echo "";
} else {
$contact_error .= "• You have not supplied a valid security code. ";
}
}
}
?>
Gabrielle Young | Artist