How to send an email using MS exchange server

前端 未结 8 2334
一整个雨季
一整个雨季 2020-12-13 16:58

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:          


        
8条回答
  •  一整个雨季
    2020-12-13 17:19

    I had to use javamail + exchange. The messages returned were helpless. Thanks to the stack, I got some hints.

    Add this to your code

      props.put("mail.smtp.starttls.enable","true");
    

    Think of adding the certificates of the machines used too. To find them, just go to your browser, export them and import to the cacerts file in use.

提交回复
热议问题