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

(-)a/opac/opac-issue-note.pl (-1 / +1 lines)
Lines 81-87 if ( $action eq 'issuenote' && C4::Context->preference('AllowCheckoutNotes') ) { Link Here
81
                },
81
                },
82
            );
82
            );
83
83
84
            my $to_address = $branch->branchemail || $branch->branchreplyto || C4::Context->ReplytoDefault || C4::Context->preference('KohaAdminEmailAddress');
84
            my $to_address = $branch->get_effective_email;
85
            my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
85
            my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
86
86
87
            C4::Letters::EnqueueLetter({
87
            C4::Letters::EnqueueLetter({
(-)a/opac/svc/checkout_notes (-2 / +1 lines)
Lines 91-97 if ($is_ajax) { Link Here
91
                    },
91
                    },
92
                );
92
                );
93
93
94
                my $to_address = $branch->branchemail || $branch->branchreplyto || C4::Context->preference('ReplytoDefault') || C4::Context->preference('KohaAdminEmailAddress');
94
                my $to_address = $branch->get_effective_email;
95
                my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
95
                my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
96
96
97
                C4::Letters::EnqueueLetter({
97
                C4::Letters::EnqueueLetter({
98
- 

Return to bug 22821