Reputation: 531
I need to set multiple return path
emails. This is important in case of an undeliverable email . I need more than one person to be notified
This is how I set one
Properties props = System.getProperties();
props.put("mail.smtp.from", "[email protected]");
How to set multiple "bounce back emails" (or return paths) ?
Upvotes: 0
Views: 456
Reputation: 29981
There's no way to specify multiple return path addresses.
You could set the return path to be an "alias" that forwards to multiple recipients.
Upvotes: 1