Problem with python logging.handlers.SMTPHandler, 'credentials' not recognized as attribute of SMTPHandler
I’m trying to set up email logging of critical errors in my python application. I keep running into an error trying to initialize the SMTPHandler: AttributeError: ‘SMTPHandler’ object has no attribute ‘credentials’ I’m using Python 3.10. I carved out a component of the program where I’m getting the error. import logging from logging.handlers import SMTPHandler… Read More Problem with python logging.handlers.SMTPHandler, 'credentials' not recognized as attribute of SMTPHandler