I changed the name of the class to TurboEmail to avoid the python email class. Plus I figured that this is useless without TG anyway.
testmail(self, to_addr, from_addr=None) sendKIDemail(self, to_addr, kid_template, dict_args, from_addr=None, subject=None ) sendHTMLemail(self, to_addr, html, from_addr=None, text=None, subject=None ) sendTEXTemail(self, to_addr, text, subject=None, from_addr=None) sendKIDTEXTemail(self, to_addr, kid_template, dict_args, from_addr=None, subject=None ) There is another function that changes html to text. html2text(self, html) I understand that KID is poor for producing text. Will this help? By the way, the text sending received little in the way of testing since I never plan on using them. They work but no edge conditions were tested. Have fun Alvin

