Skip to content

Commit 251f7cc

Browse files
committed
added action email template
1 parent b47aede commit 251f7cc

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{% load i18n %}
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
5+
<head>
6+
<title>{{ site.name }} {% trans "registration" %}</title>
7+
</head>
8+
9+
<body>
10+
<p>
11+
{% blocktrans with site_name=site.name %}
12+
You (or someone pretending to be you) have asked to register an account at
13+
{{ site_name }}. If this wasn't you, please ignore this email
14+
and your address will be removed from our records.
15+
{% endblocktrans %}
16+
</p>
17+
<p>
18+
{% blocktrans %}
19+
To activate this account, please click the following link within the next
20+
{{ expiration_days }} days:
21+
{% endblocktrans %}
22+
</p>
23+
24+
<p>
25+
<a href="http://{{site.domain}}{% url 'registration_activate' activation_key %}">
26+
{{site.domain}}{% url 'registration_activate' activation_key %}
27+
</a>
28+
</p>
29+
<p>
30+
{% blocktrans with site_name=site.name %}
31+
Sincerely,
32+
{{ site_name }} Management
33+
{% endblocktrans %}
34+
</p>
35+
</body>
36+
37+
</html>

0 commit comments

Comments
 (0)