Created
May 12, 2020 17:21
-
-
Save owfm/cd4a59384007cf1544f201d4bbd0b4b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// email.js | |
"use-strict"; | |
export const congratulations = (event, context, callback) => { | |
callback( | |
null, | |
`Dear ${event.employeeDetails.employeeName}, Congrats! | |
We'd like to offer you the promotion to the role of ${event.employeeDetails.proposedRole}!"` | |
); | |
}; | |
export const commiserations = (event, context, callback) => { | |
callback( | |
null, | |
`Dear ${event.employeeDetails.employeeName}, | |
We're sorry but your promotion to the role of ${event.employeeDetails.proposedRole} was unsuccessful this time."` | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment