View | Details | Raw Unified | Return to bug 24826
Collapse All | Expand All

(-)a/Koha/Email.pm (-3 / +2 lines)
Lines 56-63 sub create_message_headers { Link Here
56
        $mail{'To'} = C4::Context->preference('SendAllEmailsTo');
56
        $mail{'To'} = C4::Context->preference('SendAllEmailsTo');
57
    }
57
    }
58
    else {
58
    else {
59
        $mail{'Cc'} = $params->{cc};
59
        $mail{'Cc'}  = $params->{cc}  if exists $params->{cc};
60
        $mail{'Bcc'} = $params->{bcc};
60
        $mail{'Bcc'} = $params->{bcc} if exists $params->{bcc};
61
    }
61
    }
62
62
63
    if ( C4::Context->preference('ReplytoDefault') ) {
63
    if ( C4::Context->preference('ReplytoDefault') ) {
64
- 

Return to bug 24826