Skip to content

Instantly share code, notes, and snippets.

@owfm
Created May 12, 2020 17:21
Show Gist options
  • Save owfm/cd4a59384007cf1544f201d4bbd0b4b8 to your computer and use it in GitHub Desktop.
Save owfm/cd4a59384007cf1544f201d4bbd0b4b8 to your computer and use it in GitHub Desktop.
// 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