I have installed PHPMailer on my website. But, I can\'t get it to work the way it should. When I send an email through the website, I get the following error:
I solved by change
$mail->setFrom('test@hostinger-tutorials.com', 'Your Name');
To be the same $mail->Username
$mail->Username
$mail->Username = 'example@hotmail.com';
to be like that :
$mail->setFrom('example@hotmail.com', 'Your Name');