Java在MimeMessage中添加标头

时间:2012-11-14 09:17:22

标签: java javamail email-headers mime-message

我正在解决的问题是,当我发送邮件时,如果收件人(邮件,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”)添加到会话的属性并解决了我的问题

1 个答案:

答案 0 :(得分:0)

代表OP:

我找到了解决方案。我添加:

props.setProperty("mail.smtp.dsn.notify", "NEVER")

该会话的属性,从而解决了我的问题。