Update messaging

This commit is contained in:
Skylar Grant 2024-09-10 14:47:34 -04:00
parent 1f3a90e08f
commit 1818b33d0b
1 changed files with 4 additions and 7 deletions

View File

@ -7,18 +7,15 @@ module.exports = {
printCredentials(username, studentId, req, res) { printCredentials(username, studentId, req, res) {
// Create the output text // Create the output text
const infoArray = [ const infoArray = [
'Username:', `Username: ${username}`,
`${username}`,
'', '',
'Email:', 'Email:',
`${username}@kvcc.me.edu`, `${username}@kvcc.me.edu`,
'', '',
'Student ID:', `Student ID: ${studentId}`,
`${studentId}`,
'', '',
'Note: When signing into the MyKV Portal, use your Username not your Email.', 'Note: When signing into the MyKV Portal, do not include @kvcc.me.edu',
'', 'For technical support contact IT Support at ITHelp@MaineCC.edu or (207)453-5079'
'For further assistance contact ithelp@mainecc.edu'
]; ];
const infoString = infoArray.join('\n'); const infoString = infoArray.join('\n');