Created
March 25, 2017 22:57
-
-
Save deltaepsilon/5186cf7fa28fb01f1cda87605de59831 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
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