def send_failure_email()

in src/monitor.py [0:0]


def send_failure_email(session: Session, config: Dict[str, str]):
    subject = '[ALERT P1] SecureDrop Site Failing Healthcheck'
    heading = 'SecureDrop Status Update'
    message = ("Monitor will attempt to update the page content. \n"
               "Please check that the update has been applied.")
    send_email(session, config, create_email(subject, heading, message))