我正在解决的问题是,当我发送邮件时,如果收件人(邮件,cc / bcc)不存在,我不希望发件人收到传递状态通知(失败)邮件。
我正在实施的解决方案是在邮件 Prevent-NonDelivery-Report
中添加新标题我想在java中的MimeMessage msg中添加新标头
// this is part of the code that defined the mime message
Session session = Session.getDefaultInstance(props, null);
// we create message
Message msg = new MimeMessage(session);
// this code is not working for me
msg.addHeader("Prevent-NonDelivery-Report", "");
我发现解决方案我将props.setProperty(“mail.smtp.dsn.notify”,“NEVER”)添加到会话的属性并解决了我的问题
答案 0 :(得分:0)
代表OP:
我找到了解决方案。我添加:
props.setProperty("mail.smtp.dsn.notify", "NEVER")
该会话的属性,从而解决了我的问题。