i am stil getting connection errors to gmail for the contact form
tried the following:
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->SMTPSecure = "tls";
$mail->Username = "@gmail.com";
$mail->Password = "";
$mail->Port = "587";
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Username = "@gmail.com";
$mail->Password = "";
$mail->Port = "25";
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Username = "@gmail.com";
$mail->Password = "";
$mail->Port = "465";
neither works
am i doing something wrong?