2016-12-10 14:16:37 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Email definitions
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
|
2018-08-17 13:08:48 -05:00
|
|
|
|
|
|
|
# bring in some common config from rattail
|
|
|
|
from rattail.emails import (upgrade_failure,
|
|
|
|
upgrade_success,
|
|
|
|
user_feedback)
|
|
|
|
|
|
|
|
# bring in some common config from rattail_tempmon
|
2019-06-15 19:06:19 -05:00
|
|
|
from rattail_tempmon.emails import (tempmon_critical_high_temp,
|
2018-08-17 13:11:52 -05:00
|
|
|
tempmon_high_temp,
|
2019-06-15 19:06:19 -05:00
|
|
|
tempmon_good_temp,
|
|
|
|
tempmon_low_temp,
|
|
|
|
tempmon_critical_low_temp,
|
|
|
|
tempmon_error,
|
|
|
|
tempmon_client_offline)
|