finish initial plugin system, get email and other features working
[logparse.git] / logparse / mail.py
index 9e840a43fde9d92cbb848db0f6004d5b00340a2d..ecd7afcd7b49baad3632544ecf37a0c8ff30ca52 100644 (file)
@@ -9,7 +9,7 @@ import logging
 logger = logging.getLogger(__name__)
 
 from os.path import isfile
-from premailer import transform
+import premailer
 from email.mime.text import MIMEText
 import subprocess
 
@@ -26,17 +26,18 @@ def mailprep(htmlin, stylesheet):
 
 def sendmail(mailbin, body, recipient, subject, *sender):
     logger.debug("Sending email")
-    msg = MIMEText(body)
+    msg = MIMEText(body, 'html')
     if sender:
         msg["From"] = sender
     msg["To"] = recipient
+    msg["Content-type"] = "text/html: te: text/html"
     msg["Subject"] = subject
-    mailproc = subprocess.Popen([mailbin, '--debug-level=10', '-t'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
+    mailproc = subprocess.Popen([mailbin, "--debug-level=" + str(10 if logging.root.level == logging.DEBUG else 0), "-t"], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
     logger.debug("Compiled message and opened process")
     try:
         stdout = mailproc.communicate(msg.as_bytes(), timeout=15)
         logger.debug("sendmail output: {}".format(stdout))
-        logger.info("Sent email")
+        logger.info("Sent email to {0}".format(recipient))
         return 0
 #    except TimeoutExpired:
 #        mailproc.kill()