Type alias GetMailActiveEditorDataResponse

GetMailActiveEditorDataResponse: { draftId?: string | null; from?: { name: string; email: string }; to?: { name: string; email: string }[]; cc?: { name: string; email: string }[]; bcc?: { name: string; email: string }[]; subject?: string; body?: string; editorState?: any }

Type declaration

  • Optional draftId?: string | null

    email draft id

  • Optional from?: { name: string; email: string }

    sender

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

    recipients

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

    cc recipients

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

    bcc recipients

  • Optional subject?: string

    email subject

  • Optional body?: string

    email body

  • Optional editorState?: any

    Any app local state associated with the editor instance

Generated using TypeDoc