SMTP Error: Could not authenticate.

SMTP Error: Could not authenticate.

Hello!
I have a website hosted at https://aws.amazon.com/en/
I made the settings to use the Zoho account.
I am using zoho's email account to send authenticated email with phpmailer, but you are presenting the following message: SMTP Error: Could not authenticate.

Below is a print of the settings made in aws
Please can you help me resolve this error?
Thanks in advance!

Email sending code:
  1. <? php
  2. require_once ('mail / class.phpmailer.php'); // Include PHPMailer folder / class
  3. $ phpMailer = new PHPMailer ();
  4. $ phpMailer-> isSMTP ();
  5. $ phpMailer-> Host = "smtp.zoho.com";
  6. $ phpMailer-> SMTPAuth = true;
  7. $ phpMailer-> Username = "contato@web3w.com.br";
  8. $ phpMailer-> Password = "***";
  9. $ phpMailer-> SMTPSecure = "ssl";
  10. $ phpMailer-> Port = 465;
  11. $ phpMailer-> isHTML (true);
  12. $ phpMailer-> CharSet = "UTF-8";
  13. $ phpMailer-> setFrom ("contato@web3w.com.br", "Contato");

  14. $ phpMailer-> addAddress ("contato@web3w.com.br");
  15. $ phpMailer-> Subject = "subject";
  16. $ phpMailer-> Body = "mail-body";
  17. $ phpMailer-> send ();