logger = logging.getLogger(__name__)
from os.path import isfile
-from premailer import transform
+import premailer
from email.mime.text import MIMEText
import subprocess
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()