From 2bb46cccb222cf5e6bf4c5b6d629c6db057d27ef Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 26 Nov 2012 14:49:05 +0530 Subject: [PATCH] send email with signature --- webnotes/utils/email_lib/form_email.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webnotes/utils/email_lib/form_email.py b/webnotes/utils/email_lib/form_email.py index e0a29cfba6..9f2ebc9dd9 100644 --- a/webnotes/utils/email_lib/form_email.py +++ b/webnotes/utils/email_lib/form_email.py @@ -130,8 +130,8 @@ class FormEmail: # body self.email.set_html_as_text(self.message) - self.email.set_part_html(self.message.replace('\n','
') + "
" \ - + self.email.get_footer() + self.body) + self.email.set_part_html(self.message.replace('\n','
') + "

" \ + + self.email.get_footer() + "

" + self.body) def make_communication(self): """make email communication"""