GetMessageMessage: {
    Body: string;
    CreatedAt?: Date;
    ExternalSystemRecordID?: string;
    From: string;
    LastModifiedAt?: Date;
    ReceivedAt?: Date;
    ReplyTo?: string[];
    SentAt?: Date;
    Subject?: string;
    ThreadID?: string;
    To: string;
}

Type declaration

  • Body: string
  • Optional CreatedAt?: Date

    Date and times associated with the message

  • Optional ExternalSystemRecordID?: string
  • From: string
  • Optional LastModifiedAt?: Date
  • Optional ReceivedAt?: Date
  • Optional ReplyTo?: string[]

    In some providers, such as MS Graph, replies can be sent to multiple other recipients rather than just the original sender

  • Optional SentAt?: Date
  • Optional Subject?: string
  • Optional ThreadID?: string

    The ID of the thread the message belongs to

  • To: string