@hiraokahypertools/pst_to_eml - v0.5.0-alpha.2
    Preparing search index...

    Interface IPItem

    interface IPItem {
        get messageClass(): string;
        get primaryNodeId(): number;
        displayName(): Promise<string>;
        toEmlBuffer(
            options: MsgConverterOptions,
        ): Promise<Uint8Array<ArrayBufferLike>>;
        toEmlStr(options: MsgConverterOptions): Promise<string>;
        toVCardStr(options: MsgConverterOptions): Promise<string>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Accessors

    • get messageClass(): string

      Check .msg file usage

      Returns string

      • This will return IPM.Contact for contact.
      • This will return IPM.Note for EML.
    • get primaryNodeId(): number

      Returns number

    Methods

    • Returns Promise<string>

    • Assume this is a mail message and then convert to EML.

      Parameters

      Returns Promise<Uint8Array<ArrayBufferLike>>

      EML file

    • Assume this is a mail message and then convert to EML.

      Parameters

      Returns Promise<string>

      EML text

    • Assume this is a contact and then convert to vCard.

      Parameters

      Returns Promise<string>

      vCard text