This file contains hidden or 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
| const { | |
| gmail: { password, recipient, sender }, | |
| } = config(); | |
| const transporter = createTransport({ | |
| service: 'gmail', | |
| auth: { | |
| user: sender, | |
| pass: password, | |
| }, |
This file contains hidden or 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
| firebase functions:config:set gmail.sender=<YOUR_EMAIL> gmail.password=<YOUR_PASSWORD> gmail.recipient=<TO_EMAIL> |
This file contains hidden or 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
| const { https } = require('firebase-functions'); | |
| const { createTransport } = require('nodemailer'); | |
| const sender = '<THE_EMAIL_YOU_JUST_CREATED'; | |
| const password = '<THE_PASSWORD_YOU_JUST_CREATED>'; | |
| const recipient = '<THE_EMAIL_YOU_ARE_SENDING_TO>'; | |
| const transporter = createTransport({ | |
| service: 'gmail', | |
| auth: { |
This file contains hidden or 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
| const { https } = require('firebase-functions'); | |
| const sendEmail = https.onRequest((req, res) => { | |
| res.send({ status: 200 }); | |
| }); | |
| module.exports = sendEmail; |
This file contains hidden or 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
| const admin = require('firebase-admin'); | |
| const sendEmail = require('./sendEmail'); // doesn't exist yet | |
| admin.initializeApp(); | |
| exports.sendEmail = sendEmail; |
NewerOlder