Skip to content

Commit

Permalink
Fix: update wording in new user email message
Browse files Browse the repository at this point in the history
  • Loading branch information
Adham-Alammuri committed Dec 2, 2024
1 parent 1abb378 commit 54add99
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions BackEndFlask/models/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@

def send_new_user_email(address: str, password: str):
subject = "Welcome to Skillbuilder!"
message = f'''Your password is <b>{password}</b>. 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)

Expand Down

0 comments on commit 54add99

Please sign in to comment.