0

I'm asking here if there is a way to ask a MTA (like EXIM) for

Delivery Status Notifications through Javamail library, as i know there is a class

called DeliveryStatus in javamail but i can't figure out how to use it in order to

get DSN from EXIM. Thanks

1 Answers1

0

RFC 1891 describes how to request a Delivery Status Notification and the com.sun.mail.smtp package javadocs describe the mail.smtp.dsn.notify and mail.smtp.dsn.ret properties you can set corresponding to the features in RFC 1891. You can also use the SMTPMessage class, which contains methods to set these notification options.

Bill Shannon
  • 29,579
  • 6
  • 38
  • 40