@@ -, +, @@ claiming letter <> <> The following issues are in late: <>, <> (<>) --- C4/Letters.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/C4/Letters.pm +++ a/C4/Letters.pm @@ -370,6 +370,9 @@ sub SendAlerts { want_librarian => 1, ) or return; + # Remove the order tag + $letter->{content} =~ s/(.*?)<\/order>/$1/gxms; + # ... then send mail my %mail = ( To => join( ',', @email), --