我一直在尝试使用Cloud Functions for Firebase向Firebase中的用户发送电子邮件。我指的是https://github.com/firebase/functions-samples/tree/master/quickstarts/email-users
的firebase函数库我根据需要安装了firebase电子邮件功能的所有节点包,并在存储库中进行了解释。 我在函数中的index.js文件中编辑了TODO
const functions = require('firebase-functions');
const nodemailer = require('nodemailer');
// Configure the email transport using the default SMTP transport and a GMail account.
// For other types of transports such as Sendgrid see https://nodemailer.com/transports/
// TODO: Configure the `gmail.email` and `gmail.password` Google Cloud environment variables.
firebase functions:config:set gmail.email="email@gmail.com" gmail.password="gmailPassword"
const gmailEmail = encodeURIComponent(functions.config().gmail.email);
const gmailPassword = encodeURIComponent(functions.config().gmail.password);
const mailTransport = nodemailer.createTransport(
`smtps://${gmailEmail}:${gmailPassword}@smtp.gmail.com`);
当我尝试使用命令
部署该功能时firebase deploy
解析函数触发器时出错。
有没有人可以帮我解决这个问题。
答案 0 :(得分:4)
functions:config
是您在命令提示符下使用Firebase CLI运行的命令,而不是您的函数代码。
所以在命令提示符/ terminal中:
firebase functions:config:set gmail.email="email@gmail.com" gmail.password="gmailPassword"