Skip to content

Commit fcd8bb2

Browse files
Adam GoughAdam Gough
authored andcommitted
generated docs again
1 parent 82570cd commit fcd8bb2

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

apps/docs/content/docs/tools/gmail.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Send emails using Gmail
6969
| `to` | string | Yes | Recipient email address |
7070
| `subject` | string | Yes | Email subject |
7171
| `body` | string | Yes | Email body content |
72+
| `cc` | string | No | CC recipients \(comma-separated for multiple\) |
7273

7374
#### Output
7475

@@ -89,6 +90,7 @@ Draft emails using Gmail
8990
| `to` | string | Yes | Recipient email address |
9091
| `subject` | string | Yes | Email subject |
9192
| `body` | string | Yes | Email body content |
93+
| `cc` | string | No | CC recipients \(comma-separated for multiple\) |
9294

9395
#### Output
9496

apps/docs/content/docs/tools/outlook.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ Draft emails using Outlook
182182
| `to` | string | Yes | Recipient email address |
183183
| `subject` | string | Yes | Email subject |
184184
| `body` | string | Yes | Email body content |
185+
| `cc` | string | No | CC recipients \(comma-separated for multiple\) |
185186

186187
#### Output
187188

apps/sim/tools/gmail/draft.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ export const gmailDraftTool: ToolConfig<GmailSendParams, GmailToolResponse> = {
6161
'MIME-Version: 1.0',
6262
`To: ${params.to}`,
6363
]
64-
64+
6565
if (params.cc) {
6666
emailHeaders.push(`Cc: ${params.cc}`)
6767
}
68-
68+
6969
emailHeaders.push(`Subject: ${params.subject}`, '', params.body)
7070
const email = emailHeaders.join('\n')
7171

apps/sim/tools/gmail/send.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ export const gmailSendTool: ToolConfig<GmailSendParams, GmailToolResponse> = {
6161
'MIME-Version: 1.0',
6262
`To: ${params.to}`,
6363
]
64-
64+
6565
if (params.cc) {
6666
emailHeaders.push(`Cc: ${params.cc}`)
6767
}
68-
68+
6969
emailHeaders.push(`Subject: ${params.subject}`, '', params.body)
7070
const email = emailHeaders.join('\n')
7171

0 commit comments

Comments
 (0)