* Your Name is required" ;
}
if(!$email) {
$err_msg .= "
* Email is required" ;
}
if (!$err_msg) {
$mail_body .= "Name: " . $name . "
";
$mail_body .= "Office Telephone: " . $tel_Office . "
";
$mail_body .= "House Mobile: " . $house_mobile . "
";
$mail_body .= "Email: " . $emal . "
";
$mail_body .= "Address : " . $address . "
";
$mail_body .= "Prefered Contact: " . $preferedcontact . "
";
$mail_body .= "Type of Query: " . $query . "
";
$mail_body .= "City: " . $city . "\r\n";
$mail_body .= "Comments " . $comment . "
";
$to = 'nairobi@una.org ';
//$to = get_setting_value("contact_email", $dbconn) ;
$subject = "UNA Online Contact [" . $name . "]" ;
$message = $mail_body ;
$headers = "MIME-Version: 1.0\r\n" ;
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n" ;
$headers .= "From: You have a new message from UNA website\r\n" ;
mail($to, $subject, $message, $headers) ;
// echo $to, $subject, $message, $headers;
$mail_sent = "true";
}
}
if ($mail_sent) {
?>
Thank you. Your request has been forwarded. |
Sorry. Your request has not been forwarded.
Please email : nairobi@una.org
Thankyou |