healthchecks/hc/lib/emails.py
2016-06-25 05:27:28 +03:00

29 lines
488 B
Python

from django.conf import settings
from djmail.template_mail import InlineCSSTemplateMail
def send(name, to, ctx):
o = InlineCSSTemplateMail(name)
ctx["SITE_ROOT"] = settings.SITE_ROOT
o.send(to, ctx)
def login(to, ctx):
send("login", to, ctx)
def set_password(to, ctx):
send("set-password", to, ctx)
def alert(to, ctx):
send("alert", to, ctx)
def verify_email(to, ctx):
send("verify-email", to, ctx)
def report(to, ctx):
send("report", to, ctx)