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

(-)a/Koha/Email.pm (-2 / +7 lines)
Lines 150-159 sub create { Link Here
150
150
151
    $email->send_or_die({ transport => $transport [, $args] });
151
    $email->send_or_die({ transport => $transport [, $args] });
152
152
153
Overloaded Email::Stuffer I<send_or_die> method, that takes care of Bcc handling.
153
Overloaded Email::Stuffer I<send_or_die> method, that takes care of Bcc and Return-path
154
handling.
155
154
Bcc is removed from the message headers, and included in the recipients list to be
156
Bcc is removed from the message headers, and included in the recipients list to be
155
passed to I<send_or_die>.
157
passed to I<send_or_die>.
156
158
159
Return-path, 'MAIL FROM', is set to the 'Sender' email header unless an explicit 'from'
160
parameter is passed to send_or_die.  'Return-path' headers are actually set by the MTA,
161
usually using the 'MAIL FROM' information set at mail server connection time.
162
157
=cut
163
=cut
158
164
159
sub send_or_die {
165
sub send_or_die {
160
- 

Return to bug 28729