Problems javamail and ZOHO MAIL. Imposible to connect...

Problems javamail and ZOHO MAIL. Imposible to connect...

I dont understand why the error that show its referenced to GMAIL...

Zoho mail uses the same email smtp server?

My code: 

  1. //Enviar el email
  2.                Properties props = new Properties();
  3.                 props.setProperty( "mail.smtp.host" , "smtp.zoho.com" );
  4.                 props.setProperty( "mail.smtp.starttls.enable" , "true" );
  5.                 props.setProperty( "mail.smtp.port" , "587" );
  6.                 props.setProperty( "mail.smtp.user" , "myemail@zohomail.com" );
  7.                 props.setProperty( "mail.smtp.auth" , "true" );
  8.                 Session sesion = Session.getDefaultInstance(props);
  9.                 sesion.setDebug( true );

  10. CREATE THE MESSAGE and last:

  11.  Transport t2 = sesion.getTransport( "smtp" );
  12.                 t2.connect( "rmyemail@zohomail.com" , "password" );
  13.                 t2.sendMessage(message2,message2.getAllRecipients());
  14.                  //Cerramos transporte
  15.                 t2.close();


ERROR:

javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at

535 5.7.8  https://support.google.com/mail/answer/14257 r4sm2933832wia.19 - gsmtp



Any solution? Thanks in advance!