如何为 java 邮件设置多个 return 路径?

How to set multiple return paths with java mail?

我需要设置多个 return path 电子邮件。这在电子邮件无法送达的情况下很重要。我需要通知不止一个人

我是这样设置的

Properties props = System.getProperties();
props.put("mail.smtp.from", "bouncebackemail@example.com"); 

如何设置多个"bounce back emails"(或return路径)?

无法指定多个 return 路径地址。

您可以将 return 路径设置为转发给多个收件人的 "alias"。