summaryrefslogtreecommitdiff
path: root/design/templates/newsletter/message/unsubscribe.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-02-05 16:18:53 -0500
committerluxagraf <sng@luxagraf.net>2020-02-05 16:18:53 -0500
commit33209aed7c3e858d95576bdcfefa17c3f5d7597b (patch)
tree08e6877551da29c0b645208c9e9e806c4624cd42 /design/templates/newsletter/message/unsubscribe.html
parent932a69ba325fab012630313edcfe697e93d340d7 (diff)
migrated newsletter templates and updated mailing model
Diffstat (limited to 'design/templates/newsletter/message/unsubscribe.html')
-rw-r--r--design/templates/newsletter/message/unsubscribe.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/design/templates/newsletter/message/unsubscribe.html b/design/templates/newsletter/message/unsubscribe.html
new file mode 100644
index 0000000..4b1a86b
--- /dev/null
+++ b/design/templates/newsletter/message/unsubscribe.html
@@ -0,0 +1,19 @@
+{% load i18n %}<!DOCTYPE html>
+
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>{% blocktrans with title=newsletter.title %}Unsubscription from {{ title }}{% endblocktrans %}</title>
+</head>
+<body>
+{% blocktrans with name=subscription.name title=newsletter.title domain=site.domain url=subscription.unsubscribe_activate_url %}Dear {{ name }},
+
+you, or someone in your name requested unsubscription from {{ title }}.
+
+If you would like to confirm your unsubscription, please follow this activation link:
+http://{{ domain }}{{ url }}
+
+Kind regards,{% endblocktrans %}
+{{ newsletter.sender }}
+</body>
+</html>