blob: 56ccbcb8dd5b999a7a0d69f3ee978905e0dc7d06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% load i18n %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% blocktrans with title=newsletter.title %}Subscription to {{ title }}{% endblocktrans %}
</title>
</head>
<body>
{% blocktrans with name=subscription.name title=newsletter.title domain=site.domain url=subscription.subscribe_activate_url intro=newsletter.intro %}
<p>Hola-</p>
<p>Someone, hopefully you, asked to subscribe to luxagraf's {{ title }} newsletter. {{ intro }}</p>
<p>Please click this link to active your subscription:</p>
https://{{ domain }}{{ url }}
{% endblocktrans %}
<p>cheers<br />
Scott</p>
</body>
</html>
|