From 51a6f0958926fcbdf48e97d386a2463a9c113d73 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 18 Oct 2013 07:25:29 +0000 Subject: [PATCH] Bug 8368: (follow-up) restore use of quoted printable for message body This is necessary to prevent the equals sign that is part of the link back to the OPAC from being mangled, thereby breaking the link. Signed-off-by: Galen Charlton --- opac/opac-sendshelf.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-sendshelf.pl b/opac/opac-sendshelf.pl index cc70765ae9..80b54e2a6c 100755 --- a/opac/opac-sendshelf.pl +++ b/opac/opac-sendshelf.pl @@ -134,6 +134,7 @@ if ( $email ) { : "list.txt"; my ($body) = $template_res =~ /\n(.*)\n?/s; + $body = encode_qp($body); my $boundary = "====" . time() . "===="; -- 2.39.5