Browse Source

Bug 5544: (follow-up) avoid warning if notice is not directed at a patron

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
new/bootstrap-opac
Kyle Hall 11 years ago
committed by Galen Charlton
parent
commit
1056adaad0
  1. 5
      C4/Letters.pm

5
C4/Letters.pm

@ -945,9 +945,12 @@ sub _send_message_by_email {
my $content = encode('utf8', $message->{'content'}); my $content = encode('utf8', $message->{'content'});
my $content_type = $message->{'content_type'} || 'text/plain; charset="UTF-8"'; my $content_type = $message->{'content_type'} || 'text/plain; charset="UTF-8"';
my $is_html = $content_type =~ m/html/io; my $is_html = $content_type =~ m/html/io;
my $branch_email = ( $member ) ? GetBranchDetail( $member->{'branchcode'} )->{'branchemail'} : undef;
my %sendmail_params = ( my %sendmail_params = (
To => $to_address, To => $to_address,
From => $message->{'from_address'} || GetBranchDetail( $member->{'branchcode'} )->{'branchemail'} || C4::Context->preference('KohaAdminEmailAddress'), From => $message->{'from_address'} || $branch_email || C4::Context->preference('KohaAdminEmailAddress'),
Subject => $subject, Subject => $subject,
charset => 'utf8', charset => 'utf8',
Message => $is_html ? _wrap_html($content, $subject) : $content, Message => $is_html ? _wrap_html($content, $subject) : $content,

Loading…
Cancel
Save