aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2020-01-11 14:01:48 -0500
committerSam Wilkins <samwilkins333@gmail.com>2020-01-11 14:01:48 -0500
commite0ccbb6b47bf612d29de515316b869fa6f7552fe (patch)
tree41f9acc35aae2f2258a0ff04879999dee6366edc /src
parente5f1e28f44808b6f23ad6b43a72ce32b781b6562 (diff)
email fix
Diffstat (limited to 'src')
-rw-r--r--src/server/DashSession/DashSessionAgent.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/DashSession/DashSessionAgent.ts b/src/server/DashSession/DashSessionAgent.ts
index de8e7240f..3c98c1e9d 100644
--- a/src/server/DashSession/DashSessionAgent.ts
+++ b/src/server/DashSession/DashSessionAgent.ts
@@ -88,7 +88,7 @@ export class DashSessionAgent extends AppliedSessionAgent {
const error = await Email.dispatch({
to: notificationRecipient,
subject: "Dash Release Session Admin Authentication Key",
- content: `The key for this session (started @ ${new Date().toUTCString()}) is ${sessionKey}.\n\n${this.signature}`
+ content: `Here's the key for this session (started @ ${new Date().toUTCString()}):\n\n${sessionKey}.\n\n${this.signature}`
});
if (error) {
this.sessionMonitor.mainLog(red(`dispatch failure @ ${notificationRecipient} (${yellow(error.message)})`));