是否可以使用Firestore和nodemailer来发送依赖于文档数据验证内容的电子邮件?



我想使用。oncreate方法发送电子邮件,但前提是文档中的字段等于"public">

service cloud.firestore {
match /databases/{database}/documents {
// Allow the user to read data if the document has the 'visibility'
// field set to 'public'
match /cities/{city} {
allow read: if resource.data.visibility == 'public';
}
}
}

这是如何与sendMail函数合并的

exports.sendMail = functions.firestore.document('Companys/{companyid}/Post-Operation/{postoperationid}').onCreate((snap, context) => {

根据官方文档,您可以使用

触发邮件

to根据内容编写并发送电子邮件写入到指定Cloud Firestore集合的文档。

请考虑安装和使用Firebase扩展,您的项目必须在Blaze计划

相关内容

  • 没有找到相关文章

最新更新