feat: recipient search
Signed-off-by: Sebastian <krupinski01@gmail.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import type { ServiceObject } from "@MailManager/models/service"
|
||||
import type { EntityIdentifier, ServiceIdentifier } from "@MailManager/types/common"
|
||||
import type { EntityIdentifier } from "@MailManager/types/common"
|
||||
import type { MessageAddressInterface } from "@MailManager/types/message"
|
||||
|
||||
export enum ComposerMode {
|
||||
Fresh = 'fresh',
|
||||
@@ -18,9 +19,9 @@ export interface ComposerDraftAttachment {
|
||||
}
|
||||
|
||||
export interface ComposerDraftMessage {
|
||||
to: string[]
|
||||
cc: string[]
|
||||
bcc: string[]
|
||||
to: MessageAddressInterface[]
|
||||
cc: MessageAddressInterface[]
|
||||
bcc: MessageAddressInterface[]
|
||||
subject: string
|
||||
body: {
|
||||
html: string
|
||||
|
||||
Reference in New Issue
Block a user