Hello,
after configuring SMTP settings, sending form doesn't still work. The same parameters are working using node-mailer.
This is my code :
$mail = new PHPMailer();
/* Add your SMTP Codes after this Line */
$mail->IsSMTP();
$mail->Host = "ssl0.ovh.net";
$mail->SMTPDebug = 0;
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Port = 465;
$mail->Username = "xxxx";
$mail->Password = "xxxx";
// End of SMTP
