Skip to content

Commit c7fd046

Browse files
committed
..
1 parent dedf88d commit c7fd046

File tree

1 file changed

+5
-3
lines changed
  • website/docs/connect-data/reference

1 file changed

+5
-3
lines changed

website/docs/connect-data/reference/gmail.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ The subject line of the email. This text appears as the title in the recipient's
4242

4343
<dd>
4444

45-
The main body of the email. You can pass plain text or HTML content. To create multiline messages or formatted text, you can use a rich text editor widget.
45+
The main body of the email. Supports both plain text and HTML content. When using HTML, ensure the MIME type is correctly set to text/html to enable proper rendering of formatting like bold, links, and images.
46+
4647

4748
```js
4849
<p>Hello {{nameInput.text}},</p>
@@ -56,15 +57,16 @@ The main body of the email. You can pass plain text or HTML content. To create m
5657

5758
<dd>
5859

59-
A list of file objects to be attached to the email. Each object should include file name, content type, and base64-encoded file data.
60+
A list of file objects to be attached to the email. Each object must include the file name, MIME type, and base64-encoded content of the file. URLs are not supported.
61+
6062

6163
</dd>
6264

6365
#### Additional Headers `object`
6466

6567
<dd>
6668

67-
Optional custom headers such as "Reply-To", "CC", or "BCC". Provide as key-value pairs.
69+
Optional custom headers such as "Reply-To", "CC", or "BCC". Provide as a JSON object representing MIME-style headers, using key-value pairs.
6870

6971
```js
7072
{

0 commit comments

Comments
 (0)