You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
490 B

from djmail.template_mail import InlineCSSTemplateMail
def login(to, ctx):
o = InlineCSSTemplateMail("login")
o.send(to, ctx)
def set_password(to, ctx):
o = InlineCSSTemplateMail("set-password")
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)