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

(-)a/C4/Letters.pm (-2 / +1 lines)
Lines 313-319 sub SendAlerts { Link Here
313
                From    => $branchdetails->{'branchemail'} || C4::Context->preference("KohaAdminEmailAddress"),
313
                From    => $branchdetails->{'branchemail'} || C4::Context->preference("KohaAdminEmailAddress"),
314
                Subject => Encode::encode( "utf8", "" . $letter->{title} ),
314
                Subject => Encode::encode( "utf8", "" . $letter->{title} ),
315
                Message => Encode::encode( "utf8", "" . $letter->{content} ),
315
                Message => Encode::encode( "utf8", "" . $letter->{content} ),
316
                'Content-Type' => 'text/plain; charset="utf8"',
316
                'Content-Type' => $letter->{'content-type'} || 'text/plain; charset="utf8"',
317
                );
317
                );
318
            sendmail(%mail) or carp $Mail::Sendmail::error;
318
            sendmail(%mail) or carp $Mail::Sendmail::error;
319
        }
319
        }
320
- 

Return to bug 13241