【发布时间】:2020-11-15 15:11:45
【问题描述】:
我正在客户端注册新用户,然后我在某处阅读,其他社区成员也告诉我,在 Cloud 中拥有此功能将自动触发它并在创建每个用户后发送一封电子邮件:
exports.sendWelcomeEmail = functions.region('europe-west6').auth.user().onCreate((user) => {
user.sendEmailVerification().then(function () {
// Email sent.
}).catch(function (error) {
// An error happened.
});
});
问题是(根据文档)sendEmailVerification() 在 Admin SDK 中不起作用,仅在 Client SDK 中起作用。我在这里遗漏了什么吗?
【问题讨论】:
-
向单个用户发送电子邮件或短信的方法仅在客户端SDK中可用,并且只能用于向当前登录的用户发送消息。
标签: node.js firebase firebase-authentication google-cloud-functions