From 7ea2e8f57b5bf8a8facc85c9481ee32b53f14d0c Mon Sep 17 00:00:00 2001
From: Saptak Sengupta
Date: Fri, 25 May 2018 02:02:30 +0530
Subject: [PATCH] Update the content of the email
---
app/retail/emails.py | 7 +++----
app/retail/templates/emails/gdpr_update.html | 2 +-
app/retail/templates/emails/gdpr_update.txt | 12 ++++++------
3 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/app/retail/emails.py b/app/retail/emails.py
index 19f236f5ae6..1ee4d735279 100644
--- a/app/retail/emails.py
+++ b/app/retail/emails.py
@@ -23,7 +23,6 @@
from django.contrib.admin.views.decorators import staff_member_required
from django.http import HttpResponse
from django.shortcuts import redirect
-from django.urls import reverse
from django.template.loader import render_to_string
from django.template.response import TemplateResponse
from django.utils import timezone
@@ -301,9 +300,9 @@ def render_bounty_startwork_expired(to_email, bounty, interest, time_delta_days)
def render_gdpr_update(to_email):
params = {
'subscriber': get_or_save_email_subscriber(to_email, 'internal'),
- 'terms_of_use_link': reverse('terms'),
- 'privacy_policy_link': reverse('privacy'),
- 'cookie_policy_link': reverse('cookie'),
+ 'terms_of_use_link': 'https://gitcoin.co/legal/terms',
+ 'privacy_policy_link': 'https://gitcoin.co/legal/privacy',
+ 'cookie_policy_link': 'https://gitcoin.co/legal/cookie',
}
subject = "Gitcoin: Updated Terms & Policies"
diff --git a/app/retail/templates/emails/gdpr_update.html b/app/retail/templates/emails/gdpr_update.html
index 2f913b88c03..4952f60be1a 100644
--- a/app/retail/templates/emails/gdpr_update.html
+++ b/app/retail/templates/emails/gdpr_update.html
@@ -36,9 +36,9 @@ {% trans "Gitcoin: Updated Terms & Policies" %}
{% trans "As always, the entire Gitcoin team works every day to make Gitcoin a safe and trustworthy place to grow open source. We invite you to learn more about our outlined updates to our Policies and Terms of Use: " %}
diff --git a/app/retail/templates/emails/gdpr_update.txt b/app/retail/templates/emails/gdpr_update.txt
index 70cbb95c7be..eb0c76c016f 100644
--- a/app/retail/templates/emails/gdpr_update.txt
+++ b/app/retail/templates/emails/gdpr_update.txt
@@ -6,15 +6,15 @@ We recently reviewed our Privacy Policy to comply with requirements of General D
As always, the entire Gitcoin team works every day to make Gitcoin a safe and trustworthy place to grow open source. We invite you to learn more about our outlined updates to our Policies and Terms of Use:
-1) Our updated Terms of Use [1]
-2) Our updated Privacy Policy [2]
-3) Our updated Cookie Policy [3]
+1) Our updated Privacy Policy [1]
+2) Our updated Cookie Policy [2]
+3) Our updated Terms of Use [3]
We’ll continue to keep you updated on our data privacy policies on the path towards a more open, transparent web. Thanks for using Gitcoin, and please let us know if you have any questions or feedback.
-[1] {{ terms_of_use_link }}
-[2] {{ privacy_policy_link }}
-[3] {{ cookie_policy_link }}
+[1] {{ privacy_policy_link }}
+[2] {{ cookie_policy_link }}
+[3] {{ terms_of_use_link }}
Warmly,
Gitcoin Core