feat: recipient search

Signed-off-by: Sebastian <krupinski01@gmail.com>
This commit is contained in:
2026-06-22 22:54:02 -04:00
parent 949bbfa538
commit b419af09eb
8 changed files with 294 additions and 26 deletions
+5 -4
View File
@@ -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