Your message has been sent successfully! Thank you, We will contact you very shortly! ';
echo 'Call hua 1';
$replyTo = '';
$name = '';
/*$message="mail";*/
$message="Full Name: ".$fullname."\n"."Email: ".$email." \n"."Mobile: ".$mobile." \n"."Subject: ".$sub." \n"."Message from Reach us: "."\n\n".$msg;
$body = $message;
$headers = array(
'From' => $name . " <" . $from . ">",
'To' => $to,
'Subject' => $subject
);
$smtp = Mail::factory('smtp', array(
'host' => $smtpHost,
'port' => $smtpPort,
'auth' => true,
'username' => $username,
'password' => $password
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo($mail->getMessage());
} else {
echo($successMessage);
}
}
?>