From d286752d0525b9bf8e6617b332aa8b3638212fc3 Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Wed, 9 Feb 2005 00:14:07 +0000 Subject: Bug 280973 : BugMail includes the headers in the email body Patch by Albert Ting r=glob a=justdave --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index f81c1615d..258bc0ccb 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -904,7 +904,7 @@ sub MessageToMTA ($) { my $headers = new Mail::Header \@header_lines, Modify => 0; $mailer->open($headers->header_hashref); - print $mailer $msg; + print $mailer $body; $mailer->close; } -- cgit v1.2.3-24-g4f1b