Facebook Post




Please use the form below to contact us.‘;
echo’
* Required fields.‘;

echo ‘

‘;
echo ‘

‘;
echo ‘
‘;
echo ‘‘;
echo ‘

‘;
echo ‘

‘;
echo ‘
‘;
echo ‘‘;
echo ‘

‘;

echo ‘

‘;
echo ‘
‘;
echo ‘‘;
echo ‘

‘;
echo ‘

‘;
echo ‘
‘;
echo ‘‘;
echo ‘

‘;
echo ‘

‘;
echo ‘
‘;
echo ‘‘;
echo ‘

‘;
echo ‘

‘;
echo ‘

‘;

if ( isset( $_POST[‘cf-submitted’] ) ) {

// sanitize form values
$name = sanitize_text_field( $_POST[“cf-name”] );
$email = sanitize_email( $_POST[“cf-email”] );
$subject = sanitize_text_field( $_POST[“cf-subject”] );
$number = sanitize_text_field( $_POST[“cf-number”] );
$message = sanitize_text_field( $_POST[“cf-message”] );

if(empty($name) || empty($email) || empty($subject) || empty($message)){
echo ‘

‘;
echo ‘

Please fill out the required fields.

‘;
echo ‘

‘;
}else{

if(!empty($number)){
$message = $message . “\n\nPhone Number: ” . $number;
}

// get the blog administrator’s email address
//$to = get_option( ‘admin_email’ );
$to = “fbpost@ccbit.edu.pk”;
$headers = “From: $name <$email>” . “\r\n”;

// If email has been process for sending, display a success message
if ( wp_mail( $to, $subject, $message, $headers ) ) {
echo ‘
;
echo ‘

‘;
echo ‘

Thanks for contacting us, expect a response soon.

‘;
echo ‘

‘;
} else {
echo ‘ An unexpected error occurred’;
}
}
}
?>