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

(-)a/C4/Letters.pm (-2 / +2 lines)
Lines 1464-1470 sub _send_message_by_email { Link Here
1464
            $email->create($params);
1464
            $email->create($params);
1465
        } else {
1465
        } else {
1466
            $email = Koha::Email->create($params);
1466
            $email = Koha::Email->create($params);
1467
            $email->header('X-Koha-Message-ID', $message->{id} ) if C4::Context->preference('SendLetterIdInEmailNotices');
1467
            $email->header('X-Koha-Letter-Id', $message->{letter_id} );
1468
            $email->header('X-Koha-Message-Id', $message->{id} );
1468
            if ($is_html) {
1469
            if ($is_html) {
1469
                $email->html_body( _wrap_html( $content, $subject ) );
1470
                $email->html_body( _wrap_html( $content, $subject ) );
1470
            } else {
1471
            } else {
1471
- 

Return to bug 31627