Type alias SetMailActiveEditorDataOptions

SetMailActiveEditorDataOptions: { to?: { email: string }[]; cc?: { email: string }[]; bcc?: { email: string }[]; subject?: string; body?: string; attachments?: { name: string; type: string; content: string }[]; editorState?: any }

Type declaration

  • Optional to?: { email: string }[]

    recipients

  • Optional cc?: { email: string }[]

    cc recipients

  • Optional bcc?: { email: string }[]

    bcc recipients

  • Optional subject?: string

    email subject

  • Optional body?: string

    email body

  • Optional attachments?: { name: string; type: string; content: string }[]
    • name: file name
    • type: file MIME type
    • content: file base64 encoded content, doesn't contain the data URI prefix
  • Optional editorState?: any

    Any app local state associated with the editor instance, it will replace the previous editorState

Generated using TypeDoc