2
0

feat(editor): Add cc & bcc + Deletable credentials

This commit is contained in:
Baptiste Arnaud
2022-02-19 10:58:56 +01:00
parent c5972ec91b
commit b89e9b1b82
12 changed files with 210 additions and 38 deletions

View File

@ -43,6 +43,8 @@ export type SendEmailStep = StepBase & {
export type SendEmailOptions = {
credentialsId: string | 'default'
recipients: string[]
cc?: string[]
bcc?: string[]
subject?: string
body?: string
}