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 <gmc@esilibrary.com>
This commit is contained in:
Galen Charlton 2013-10-18 07:25:29 +00:00
parent 745bcfe0a6
commit 51a6f09589

View file

@ -134,6 +134,7 @@ if ( $email ) {
: "list.txt"; : "list.txt";
my ($body) = $template_res =~ /<MESSAGE>\n(.*)\n?<END_MESSAGE>/s; my ($body) = $template_res =~ /<MESSAGE>\n(.*)\n?<END_MESSAGE>/s;
$body = encode_qp($body);
my $boundary = "====" . time() . "===="; my $boundary = "====" . time() . "====";