From 1615f423d00611af2deb6a256d99ac4bb2f29bbd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Wed, 6 Aug 2014 13:45:22 -0400 Subject: [PATCH] sendmail: fix missing empty line between header and body MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/sendmail.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sendmail.nit b/lib/sendmail.nit index c8be5f8..0040c71 100644 --- a/lib/sendmail.nit +++ b/lib/sendmail.nit @@ -102,7 +102,7 @@ To: {{{to.join(",")}}}\r CC: {{{cc.join(",")}}}\r BCC: {{{bcc.join(",")}}}\r Subject: {{{subject}}}\r -{{{header.join("\r\n", ": ")}}}\r +{{{header.join("\r\n", ": ")}}}\r\n\r {{{content}}}""" end end -- 1.7.9.5