improve email wording for test email

This commit is contained in:
Son NK 2019-11-15 14:26:01 +01:00
parent 0ed2ef60c5
commit 727830be6b
2 changed files with 6 additions and 2 deletions

View File

@ -34,11 +34,15 @@ def index():
Hi {current_user.name}!
This is a test to make sure that you receive emails sent from SimpleLogin.
If you have any questions, feel free to reply to this email :).
Have a nice day!
SimpleLogin team.
Son.
SimpleLogin.
""",
)
flash(
f"An email sent to {gen_email.email} is on its way, please check your inbox/spam folder",
"success",

View File

@ -40,7 +40,7 @@ def send_by_postfix(to_email, subject, content):
msg = EmailMessage()
msg["Subject"] = subject
msg["From"] = SUPPORT_EMAIL
msg["From"] = f"Son from SimpleLogin <{SUPPORT_EMAIL}>"
msg["To"] = to_email
msg.set_content(content)