mimekit-ts - v1.0.0
    Preparing search index...

    Interface ITnefPart

    An interface for a MIME part containing Microsoft TNEF data.

    Represents an application/ms-tnef or application/vnd.ms-tnef part. TNEF (Transport Neutral Encapsulation Format) attachments are most often sent by Microsoft Outlook clients.

    interface ITnefPart {
        convertToMessage(): MimeMessage;
        extractAttachments(): Iterable<MimeEntity>;
    }

    Implemented by

    Index
    • Extract the embedded attachments from the TNEF data.

      Parses the TNEF data and extracts all embedded file attachments.

      Returns Iterable<MimeEntity>

      the attachments.