From: Mark Wells Date: Fri, 29 Jan 2016 06:02:08 +0000 (-0800) Subject: correctly split Bcc addresses before trying to send, #39746 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=b56b12ca1d695efb26e61887499b1f8035ee0301 correctly split Bcc addresses before trying to send, #39746 --- diff --git a/FS/FS/Misc.pm b/FS/FS/Misc.pm index 164f1baf4..e425c4a4b 100644 --- a/FS/FS/Misc.pm +++ b/FS/FS/Misc.pm @@ -252,12 +252,14 @@ sub send_email { $smtp_opt{'ssl'} = 1 if defined($enc) && $enc eq 'tls'; $transport = Email::Sender::Transport::SMTP->new( %smtp_opt ); } - + push @to, $options{bcc} if defined($options{bcc}); + # make sure + my @env_to = split(/\s*,\s*/, join(', ', @to)); local $@; # just in case eval { sendmail($message, { transport => $transport, from => $from, - to => \@to }) }; + to => \@env_to }) }; my $error = ''; if(ref($@) and $@->isa('Email::Sender::Failure')) {