Hi,
I can't send email using SMTP on http://www.mrocha.eng.br/r_imigrantes/
The code I am using is:
$mail->isSMTP();
$mail->SMTPDebug = 0;
$mail->Host = 'smtp.mrocha.eng.br';
$mail->SMTPAuth = true;
$mail->Port = 587;
$mail->SMTPSecure = false;
$mail->SMTPAutoTLS = false;
$mail->Username = 'email';
$mail->Password = 'password';
$mail->addBCC('another_email');
$mail->IsHTML(true);Could you please help me to fix this issue?
Regards,
Luiz
