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.

16 lines
312 B

  1. from djmail.template_mail import InlineCSSTemplateMail
  2. def login(to, ctx):
  3. o = InlineCSSTemplateMail("login")
  4. o.send(to, ctx)
  5. def alert(to, ctx):
  6. o = InlineCSSTemplateMail("alert")
  7. o.send(to, ctx)
  8. def verify_email(to, ctx):
  9. o = InlineCSSTemplateMail("verify-email")
  10. o.send(to, ctx)