blob: 89d822134c342a4728f06b1294a9fba72a9fd4fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% 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 %}Dear {{ name }},
hola-
Someone, hopefully you, asked to subscribe to {{ title }}, a luxagraf.net letter.
To confirm your subscription, please follow this activation link:
https://{{ domain }}{{ url }}
{% endblocktrans %}
cheers
Scott
</body>
</html>
|