Remove link to support from test email

This commit is contained in:
Carlos Quintana 2022-05-16 08:27:23 +02:00
parent a0bcb33bd1
commit 5fc8245b8b
No known key found for this signature in database
GPG key ID: 15E73DCC410679F8
3 changed files with 0 additions and 7 deletions

View file

@ -14,7 +14,6 @@ from email.message import Message, EmailMessage
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import make_msgid, formatdate
from flask import url_for
from smtplib import SMTP, SMTPException
from typing import Tuple, List, Optional, Union
@ -204,7 +203,6 @@ def send_invalid_totp_login_email(user, totp_type):
def send_test_email_alias(email, name):
support_page = URL + url_for("dashboard.support_route")
send_email(
email,
f"This email is sent to {email}",
@ -212,13 +210,11 @@ def send_test_email_alias(email, name):
"transactional/test-email.txt",
name=name,
alias=email,
support_page=support_page,
),
render(
"transactional/test-email.html",
name=name,
alias=email,
support_page=support_page,
),
)

View file

@ -3,6 +3,5 @@
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("This is a test to make sure that you receive emails sent to your alias <b>" + alias + "</b>.") }}
{{ render_text('If you have any questions, feel free to contact us through our <a href="' + support_page +'">support page</a>') }}
{% endblock %}

View file

@ -5,7 +5,5 @@ 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 through our support page: {{support_page}}
{% endblock %}