我想使用。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计划