|
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 |
- |
|
|