Skip to content

Commit 975ffdb

Browse files
authored
docs(firestore-send-email): clarify FROM address not working with gmail (#1939)
1 parent 3f7317f commit 975ffdb

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

docs/firestore-send-email/get-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ message: {
8989

9090
The top-level fields of the document supply the email sender and recipient information. Available fields are:
9191

92-
- **from:** The sender's email address. If not specified in the document, uses the configured "Default FROM address" parameter.
92+
- **from:** The sender's email address. If not specified in the document, uses the configured "Default FROM address" parameter. This parameter does not work with [Gmail SMTP](https://nodemailer.com/usage/using-gmail/).
9393
- **replyTo:** The reply-to email address. If not specified in the document, uses the configured "Default REPLY-TO address" parameter.
9494
- **to:** A single recipient email address or an array containing multiple recipient email addresses.
9595
- **toUids:** An array containing the recipient UIDs.

firestore-send-email/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ password)
8282

8383
* Email documents collection: What is the path to the collection that contains the documents used to build and send the emails?
8484

85-
* Default FROM address: The email address to use as the sender's address (if it's not specified in the added email document). You can optionally include a name with the email address (`Friendly Firebaser <[email protected]>`).
85+
* Default FROM address: The email address to use as the sender's address (if it's not specified in the added email document). You can optionally include a name with the email address (`Friendly Firebaser <[email protected]>`). This parameter does not work with [Gmail SMTP](https://nodemailer.com/usage/using-gmail/).
8686

8787
* Default REPLY-TO address: The email address to use as the reply-to address (if it's not specified in the added email document).
8888

firestore-send-email/extension.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,10 @@ params:
107107
label: Default FROM address
108108
description: >-
109109
The email address to use as the sender's address (if it's not specified in
110-
the added email document). You can optionally include a name with the
111-
email address (`Friendly Firebaser <[email protected]>`).
110+
the added email document). You can optionally include a name with the
111+
email address (`Friendly Firebaser <[email protected]>`). This parameter
112+
does not work with [Gmail
113+
SMTP](https://nodemailer.com/usage/using-gmail/).
112114
type: string
113115
114116
validationRegex: ^(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$|^.*<(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})>$

0 commit comments

Comments
 (0)