layout.tpl 632 B

123456789101112131415161718192021222324252627282930313233
  1. {% block subject %}
  2. You have new email!
  3. {% endblock %}
  4. {% block html_template %}
  5. <html>
  6. <head>
  7. </head>
  8. <body>
  9. <header>
  10. <strong>Chamilo mail header!!</strong>
  11. </header>
  12. {% block html_body %}
  13. HTML <strong>body</strong>
  14. {% endblock %}
  15. <hr>
  16. <footer>
  17. <strong>Chamilo mail footer!!</strong>
  18. </footer>
  19. </body>
  20. </html>
  21. {% endblock %}
  22. {% block text_template %}
  23. Chamilo mail header in plain TXT
  24. {% block text_body %}
  25. txt body
  26. {% endblock %}
  27. ----------------------------------------
  28. Chamilo mail footer in plain TXT
  29. {% endblock %}