Edit: /home/aqcert/public_html/career.php (5426B)
";
$msg .="We Contact Shorty.
";
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
//$mail->SMTPDebug = 2; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = "tls"; // secure transfer enabled REQUIRED for GMail
$mail->Host = "kyamastposthai.com";
$mail->Port = 25 ; // or 587
$mail->IsHTML(true);
$mail->Username = "support@kyamastposthai.com";
$mail->Password = "@kyamast123@";
$mail->SetFrom("support@kyamastposthai.com");
$mail->Subject = "Your Gmail SMTP Mail";
$mail->Body = $msg;
$mail->AddAddress($email);
if(!$mail->Send()){
echo "Mailer Error: " . $mail->ErrorInfo;
}
}
?>