diff --git a/app/email_utils.py b/app/email_utils.py index ac7f16a8..4dcc2209 100644 --- a/app/email_utils.py +++ b/app/email_utils.py @@ -58,7 +58,6 @@ from app.config import ( VERP_PREFIX, VERP_MESSAGE_LIFETIME, VERP_EMAIL_SECRET, - SUPPORT_EMAIL, ) from app.db import Session from app.dns_utils import get_mx_domains @@ -213,14 +212,12 @@ def send_test_email_alias(email, name): "transactional/test-email.txt", name=name, alias=email, - support_email=SUPPORT_EMAIL, support_page=support_page, ), render( "transactional/test-email.html", name=name, alias=email, - support_email=SUPPORT_EMAIL, support_page=support_page, ), ) diff --git a/templates/emails/transactional/test-email.html b/templates/emails/transactional/test-email.html index 7d0d0b71..c22c8855 100644 --- a/templates/emails/transactional/test-email.html +++ b/templates/emails/transactional/test-email.html @@ -3,6 +3,6 @@ {% block content %} {{ render_text("Hi " + name) }} {{ render_text("This is a test to make sure that you receive emails sent to your alias " + alias + ".") }} - {{ render_text('If you have any questions, feel free to contact us either by sending an e-mail to ' + support_email + ' or through our support page') }} + {{ render_text('If you have any questions, feel free to contact us through our support page') }} {% endblock %} diff --git a/templates/emails/transactional/test-email.txt b/templates/emails/transactional/test-email.txt index 4c5b3aaa..14576313 100644 --- a/templates/emails/transactional/test-email.txt +++ b/templates/emails/transactional/test-email.txt @@ -5,7 +5,7 @@ Hi {{name}} This is a test to make sure that you receive emails sent to your alias {{alias}}. -If you have any questions, feel free to contact us either by sending an e-mail to {{support_email}} or through our support page: {{support_page}} +If you have any questions, feel free to contact us through our support page: {{support_page}} {% endblock %}