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

(-)a/C4/Letters.pm (-2 / +1 lines)
Lines 371-377 sub SendAlerts { Link Here
371
        # ... then send mail
371
        # ... then send mail
372
        my %mail = (
372
        my %mail = (
373
            To => join( ',', @email),
373
            To => join( ',', @email),
374
            From           => $userenv->{emailaddress},
374
            From           => C4::Context->preference('KohaAdminEmailAddress'),
375
            Subject        => Encode::encode( "utf8", "" . $letter->{title} ),
375
            Subject        => Encode::encode( "utf8", "" . $letter->{title} ),
376
            Message        => Encode::encode( "utf8", "" . $letter->{content} ),
376
            Message        => Encode::encode( "utf8", "" . $letter->{content} ),
377
            'Content-Type' => 'text/plain; charset="utf8"',
377
            'Content-Type' => 'text/plain; charset="utf8"',
378
- 

Return to bug 10994