如何隐藏多个收件人电子邮件地址 firebase 扩展触发电子邮件
How to hide multiple recipient email addresses firebase extension trigger email
我使用 Firebase 触发器电子邮件扩展来发送电子邮件。此扩展允许将一封电子邮件发送到多个地址。当我这样做时,一切顺利,但收件人可以看到所有也在接收电子邮件的地址。如何隐藏它?
如扩展详细文档中的 here 所述,您可以使用 bcc
字段而不是 to
字段。
为此,您在“电子邮件文档集合”(在配置屏幕中命名)中创建的文档应具有 bcc
字段而不是 to
字段,如下所示:
bcc: ['someone1@example.com', 'someone2@example.com', 'someone3@example.com'],
message: {
subject: 'Hello from Firebase!',
text: 'This is the plaintext section of the email body.',
html: 'This is the <code>HTML</code> section of the email body.',
}
我使用 Firebase 触发器电子邮件扩展来发送电子邮件。此扩展允许将一封电子邮件发送到多个地址。当我这样做时,一切顺利,但收件人可以看到所有也在接收电子邮件的地址。如何隐藏它?
如扩展详细文档中的 here 所述,您可以使用 bcc
字段而不是 to
字段。
为此,您在“电子邮件文档集合”(在配置屏幕中命名)中创建的文档应具有 bcc
字段而不是 to
字段,如下所示:
bcc: ['someone1@example.com', 'someone2@example.com', 'someone3@example.com'],
message: {
subject: 'Hello from Firebase!',
text: 'This is the plaintext section of the email body.',
html: 'This is the <code>HTML</code> section of the email body.',
}