@@ -72,6 +72,27 @@ export const GmailBlock: BlockConfig<GmailToolResponse> = {
7272 condition : { field : 'operation' , value : [ 'send_gmail' , 'draft_gmail' ] } ,
7373 required : true ,
7474 } ,
75+ // Advanced Settings - Additional Recipients
76+ {
77+ id : 'cc' ,
78+ title : 'CC' ,
79+ type : 'short-input' ,
80+ layout : 'full' ,
81+ placeholder : 'CC recipients (comma-separated)' ,
82+ condition : { field : 'operation' , value : [ 'send_gmail' , 'draft_gmail' ] } ,
83+ mode : 'advanced' ,
84+ required : false ,
85+ } ,
86+ {
87+ id : 'bcc' ,
88+ title : 'BCC' ,
89+ type : 'short-input' ,
90+ layout : 'full' ,
91+ placeholder : 'BCC recipients (comma-separated)' ,
92+ condition : { field : 'operation' , value : [ 'send_gmail' , 'draft_gmail' ] } ,
93+ mode : 'advanced' ,
94+ required : false ,
95+ } ,
7596 // Label/folder selector (basic mode)
7697 {
7798 id : 'folder' ,
@@ -198,6 +219,8 @@ export const GmailBlock: BlockConfig<GmailToolResponse> = {
198219 to : { type : 'string' , description : 'Recipient email address' } ,
199220 subject : { type : 'string' , description : 'Email subject' } ,
200221 body : { type : 'string' , description : 'Email content' } ,
222+ cc : { type : 'string' , description : 'CC recipients (comma-separated)' } ,
223+ bcc : { type : 'string' , description : 'BCC recipients (comma-separated)' } ,
201224 // Read operation inputs
202225 folder : { type : 'string' , description : 'Gmail folder' } ,
203226 manualFolder : { type : 'string' , description : 'Manual folder name' } ,
0 commit comments