diff --git a/BackEndFlask/models/utility.py b/BackEndFlask/models/utility.py index 942ea62b0..e0b61188c 100644 --- a/BackEndFlask/models/utility.py +++ b/BackEndFlask/models/utility.py @@ -13,10 +13,15 @@ def send_new_user_email(address: str, password: str): subject = "Welcome to Skillbuilder!" - message = f'''Your password is {password}. You will need to choose a new password after logging in for the first time. - - Cheers, - The Skillbuilder Team''' + message = f'''Welcome to SkillBuilder, a tool to enhance your learning experience this semester! This app will be our hub for assessing and providing feedback on transferable skills (these are also referred to as process skills, professional skills, durable skills). + + Access the app at this link: skill-builder.net + + Login Information: Your Username is {address} + + Temporary Password: {password} + + Please change your password after your first login to keep your account secure.''' send_email(address, subject, message)