<div dir="ltr">I have the following code in my app factory...<br><br><font face="monospace">    mh = SMTPHandler(<br>        mailhost=app.config["MAIL_SERVER"],<br>        fromaddr=app.config["MAIL_DEFAULT_SENDER"],<br>        toaddrs=app.config["ERRORS_EMAIL"],<br>        subject="Error",<br>    )<br>    mh.setLevel(logging.ERROR)<br>    app.logger.addHandler(mh)</font><div><br></div><div>Is there any way to get the value of "current_user" inserted into the email somewhere?</div></div>