I am trying to sent an email using my company\'s mail server. But I am getting the following exception
Caused by: com.sun.mail.smtp.SMTPSendFailedException:
Please use the following code parts instead of Transport.send(message);
MimeMessage message = new MimeMessage(session);
message.saveChanges();
Transport transport = session.getTransport("smtp");
transport.connect(host, "user", "pwd");
transport.sendMessage(message, message.getAllRecipients());
transport.close();
I have tested in the local and it is working