Revision 703a7cf8
Von ChrisWi vor etwa 7 Jahren hinzugefügt
SL/BackgroundJob/CreatePeriodicInvoices.pm | ||
---|---|---|
400 | 400 |
); |
401 | 401 |
} |
402 | 402 |
|
403 |
my $global_bcc = SL::DB::Default->get->global_bcc; |
|
404 |
|
|
403 | 405 |
for my $recipient (@recipients) { |
404 | 406 |
my $mail = Mailer->new; |
405 | 407 |
$mail->{from} = $data->{config}->email_sender || $::lx_office_conf{periodic_invoices}->{email_from}; |
406 | 408 |
$mail->{to} = $recipient; |
409 |
$mail->{bcc} = $global_bcc; |
|
407 | 410 |
$mail->{subject} = $data->{config}->email_subject; |
408 | 411 |
$mail->{message} = $data->{config}->email_body; |
409 | 412 |
$mail->{attachments} = [{ |
Auch abrufbar als: Unified diff
fehlendes BCC in CreatePeriodicInvoices.pm(_email_invoice) hinzugefügt