Closed gregapompe closed 9 years ago
Based on your suggestion, I added support for bcc in this PR/branch: https://github.com/ironcamel/Dancer-Plugin-Email/pull/21 . Can you try that branch to see if it behaves the way you expect?
Sorry for late response. This is what i needed yes.
thx
BCC field is currently ignored. Simple fix is as follows:
sendmail $email, { %sendmail_arg, to => $params->{bcc} } if $params->{bcc}; # send to explicit Bcc address return sendmail $email, \%sendmail_arg;
Only the error handling problem remains.
Regards