3

I'm using Apache Commons Email in user application for mailing purposes. Letters sends succusfully and client recieves it. The problem is sent emails does not save in Sent folder on server. My code:

MultiPartEmail email = new MultiPartEmail();
email.setHostName("smtp.ukr.net");
email.setSmtpPort(2525);
email.setAuthenticator(new DefaultAuthenticator("****@ukr.net", "****"));
email.setSSLOnConnect(true);

Is it the problem of email smtp provider or problem of my code?

rozerro
  • 5,787
  • 9
  • 46
  • 94

0 Answers0