Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save deltaepsilon/5186cf7fa28fb01f1cda87605de59831 to your computer and use it in GitHub Desktop.
Save deltaepsilon/5186cf7fa28fb01f1cda87605de59831 to your computer and use it in GitHub Desktop.
exports.sendWelcomeEmail = functions.auth.user().onCreate(event => {
const user = event.data;
const email = user.email;
// …
});
exports.sendByeEmail = functions.auth.user().onDelete(event => {
const user = event.data;
const email = user.email;
// …
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment