diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-11 14:01:48 -0500 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-11 14:01:48 -0500 |
commit | e0ccbb6b47bf612d29de515316b869fa6f7552fe (patch) | |
tree | 41f9acc35aae2f2258a0ff04879999dee6366edc | |
parent | e5f1e28f44808b6f23ad6b43a72ce32b781b6562 (diff) |
email fix
-rw-r--r-- | src/server/DashSession/DashSessionAgent.ts | 2 |
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)})`)); |