Browse Source

Example templates for mailer tests. #321

Rafał Pitoń 11 years ago
parent
commit
e2cfa5fbd4

+ 9 - 0
misago/templates/misago/email/welcome.html

@@ -0,0 +1,9 @@
+{% extends "misago/emails/base.html" %}
+{% load i18n %}
+
+
+{% block title %}{% trans "Welcome aboard!" %}{% endblock %}
+
+{% block content %}
+{% trans "Hello, you are receiving this message because we are liking you!" %}
+{% endblock content %}

+ 9 - 0
misago/templates/misago/email/welcome.txt

@@ -0,0 +1,9 @@
+{% extends "misago/emails/base.html" %}
+{% load i18n %}
+
+
+{% block title %}{% trans "Welcome aboard!" %}{% endblock %}
+
+{% block content %}
+{% trans "Hello, you are receiving this message because we are liking you!" %}
+{% endblock content %}