diff --git a/app/dashboard/views/index.py b/app/dashboard/views/index.py index 4e508d64..336b10d2 100644 --- a/app/dashboard/views/index.py +++ b/app/dashboard/views/index.py @@ -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", diff --git a/app/email_utils.py b/app/email_utils.py index 92cb9ae6..401ce29c 100644 --- a/app/email_utils.py +++ b/app/email_utils.py @@ -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)