From 2affc30b769727880c495a3b5e96eac9f9275ec8 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Sat, 1 Dec 2018 19:58:41 -0500 Subject: [PATCH] Change success email message --- flask_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_app.py b/flask_app.py index 7eb60e5..6f23e66 100644 --- a/flask_app.py +++ b/flask_app.py @@ -185,7 +185,7 @@ def register(): msg += 'Sorry! We have hit our registration capacity. You have been placed on the waitlist.\n' msg += 'We will let you know if space opens up.\n' else: - msg += 'You are fully registered! We will send you more info closer to the hackathon.\n' + msg += 'You are fully registered! You are guarenteed a spot at the hackathon. We will send you more info closer to the hackathon.\n' send_email(session['mymlh']['email'], 'Hack@WPI - Thanks for applying', msg) # Finally, send them to their dashboard