mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-10 23:40:11 +00:00
21 lines
395 B
Python
21 lines
395 B
Python
from djmail.template_mail import InlineCSSTemplateMail
|
|
|
|
|
|
def login(to, ctx):
|
|
o = InlineCSSTemplateMail("login")
|
|
o.send(to, ctx)
|
|
|
|
|
|
def alert(to, ctx):
|
|
o = InlineCSSTemplateMail("alert")
|
|
o.send(to, ctx)
|
|
|
|
|
|
def verify_email(to, ctx):
|
|
o = InlineCSSTemplateMail("verify-email")
|
|
o.send(to, ctx)
|
|
|
|
|
|
def report(to, ctx):
|
|
o = InlineCSSTemplateMail("report")
|
|
o.send(to, ctx)
|