Subject: | configurable DSN via smtp->recipient() broken |
DSN (delivery status notifications) can be controlled per recipient within the ESMTP commands.
This is done via Net::SMTP support by passing options to the Net::SMTP::recipient() function.
Previous versions of MIME::Lite allowed the "Notify" option to be passed for recipients.
Just need to add "Notify" as an allowed recipient option here on line 2830...
2829 my @_mail_opts = qw( Size Return Bits Transaction Envelope );
2830 my @_recip_opts = qw( SkipBad Notify );
2831 my @_net_smtp_opts = qw( Hello LocalAddr LocalPort Timeout
-craig