MessagingExceptionIOException while sending message in java?

前端 未结 8 947
说谎
说谎 2021-01-19 02:41

I use the following code to send mail.Text message sending is working fine but Mail with attachment is not working it gives the Exception.How to solve this

8条回答
  •  遥遥无期
    2021-01-19 03:08

    Set this value:

    message.setContent(body, "text/html; charset=UTF-8");    
    messageBodyPart.setContent(body, "text/html; charset=UTF-8");
    

    Also check the file path, or please write complete path in your log

提交回复
热议问题