Compare commits
No commits in common. "63e0e34cb761c00638a8e52573ad315e6e73a9df" and "3c9e41bd8d1bb52ea80d26d006708d43ba7897f5" have entirely different histories.
63e0e34cb7
...
3c9e41bd8d
@ -3,14 +3,6 @@ const fs = require('fs');
|
|||||||
const { spawn } = require('child_process');
|
const { spawn } = require('child_process');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
const info = {
|
|
||||||
deptName: "IT Support",
|
|
||||||
supportEmail: "ITHelp@MaineCC.edu",
|
|
||||||
supportPhone: "(207) 453-5079"
|
|
||||||
}
|
|
||||||
|
|
||||||
const receiptFooter = `For other technical support, contact ${info.deptName} at ${info.supportEmail} or ${info.supportPhone}.`;
|
|
||||||
|
|
||||||
const mccContractor = {
|
const mccContractor = {
|
||||||
name: "Contracting Company",
|
name: "Contracting Company",
|
||||||
email: "helpme@contractor.com",
|
email: "helpme@contractor.com",
|
||||||
@ -30,7 +22,7 @@ module.exports = {
|
|||||||
`Student ID: ${studentId}`,
|
`Student ID: ${studentId}`,
|
||||||
'',
|
'',
|
||||||
'Note: the MyKV Portal uses your username to sign in, not email.',
|
'Note: the MyKV Portal uses your username to sign in, not email.',
|
||||||
receiptFooter
|
'For technical support contact IT Support at ITHelp@MaineCC.edu or (207)453-5079'
|
||||||
];
|
];
|
||||||
const infoString = infoArray.join('\n');
|
const infoString = infoArray.join('\n');
|
||||||
|
|
||||||
@ -98,11 +90,11 @@ module.exports = {
|
|||||||
// Create the output text
|
// Create the output text
|
||||||
const infoArray = [
|
const infoArray = [
|
||||||
'Kennebec Valley Community College is migrating email domains from @kvcc.me.edu to @mainecc.edu.\n',
|
'Kennebec Valley Community College is migrating email domains from @kvcc.me.edu to @mainecc.edu.\n',
|
||||||
`For support with this transition, please contact:\n${mccContractor.name}`,
|
`For support with this transition, please contact ${mccContractor.name}:`,
|
||||||
`${mccContractor.phone}`,
|
`Phone: ${mccContractor.phone}`,
|
||||||
`${mccContractor.email}`,
|
`Email: ${mccContractor.email}`,
|
||||||
`${mccContractor.site}\n`,
|
`Website:\n${mccContractor.site}\n`,
|
||||||
receiptFooter
|
'For other technical support contact IT Support at ITHelp@MaineCC.edu or (207)453-5079'
|
||||||
];
|
];
|
||||||
const infoString = infoArray.join('\n');
|
const infoString = infoArray.join('\n');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user