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

(-)a/C4/Letters.pm (+3 lines)
Lines 356-361 sub SendAlerts { Link Here
356
            Message        => Encode::encode( "utf8", "" . $letter->{content} ),
356
            Message        => Encode::encode( "utf8", "" . $letter->{content} ),
357
            'Content-Type' => 'text/plain; charset="utf8"',
357
            'Content-Type' => 'text/plain; charset="utf8"',
358
        );
358
        );
359
        if (C4::Context->preference("ClaimsBccCopy")) {
360
            $mail{'Bcc'} = $userenv->{emailaddress};
361
        }
359
        sendmail(%mail) or carp $Mail::Sendmail::error;
362
        sendmail(%mail) or carp $Mail::Sendmail::error;
360
363
361
        logaction(
364
        logaction(
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref (-1 / +8 lines)
Lines 57-62 Acquisitions: Link Here
57
              type: textarea
57
              type: textarea
58
            - "You can use the following fields: price, quantity, budget_code, discount, sort1, sort2"
58
            - "You can use the following fields: price, quantity, budget_code, discount, sort1, sort2"
59
            - "<br/>For example:<br/>price: 947$a|947$c<br/>quantity: 969$h<br/>budget_code: 922$a"
59
            - "<br/>For example:<br/>price: 947$a|947$c<br/>quantity: 969$h<br/>budget_code: 922$a"
60
        -
61
            - Send a copy in bcc of the claimacquisition and claimissues letters to the active user
62
            - pref: ClaimsBccCopy
63
              default: no
64
              choices:
65
                yes: Send
66
                no: Don't send
67
60
    Printing:
68
    Printing:
61
        -
69
        -
62
            - Use the
70
            - Use the
63
- 

Return to bug 10076