EmailFormats

EmailFormats class

Encapsulates all emails formats. Includes the following file types: Tnef, Eml, Emlx, Msg, Html, Mhtml.

public class EmailFormats : DocumentFormatBase

Properties

Name Description
Extension { get; } Gets the file extension of the document format.
FormatFamily { get; } Gets the format family to which the document format belongs.
Id { get; } Gets the unique identifier for the format family.
Mime { get; } Gets the MIME type of the document format.
Name { get; } Gets the name of the format family.
static All { get; } Gets an enumerable collection of all EmailFormats.

Methods

Name Description
static FromExtension(string) Retrieves an instance of the specified type EmailFormats that has the specified file extension.
Equals(FormatFamilyBase) Determines whether this instance is equal to the specified FormatFamilyBase instance.
Equals(IDocumentFormat) Determines whether this instance is equal to the specified IDocumentFormat instance.
override Equals(object) Determines whether this instance is equal to the specified DocumentFormatBase instance.
override GetHashCode() Returns a hash code for the current object.
override ToString() Returns a string that represents the current object.
explicit operator Converts a string representing a file extension to a EmailFormats object.

Fields

Name Description
static readonly Eml EML file format represents email messages saved using Outlook and other relevant applications. Learn more about this file format here.
static readonly Emlx The EMLX file format is implemented and developed by Apple. The Apple Mail application uses the EMLX file format for exporting the emails. Learn more about this file format here.
static readonly Html HTML formatted emails.
static readonly Ics The Internet Calendaring and Scheduling Core Object Specification (iCalendar) is an internet standard (RFC 2445) for exchanging and deploying calendaring events and scheduling. Learn more about this file format here.
static readonly Mbox MBox file format is a generic term that represents a container for collection of electronic mail messages. Learn more about this file format here.
static readonly Mhtml MHTML, an initialism of “MIME encapsulation of aggregate HTML documents”.
static readonly Msg MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. Learn more about this file format here.
static readonly Oft Files with .oft extension are template files that are created using Microsoft Outlook. Learn more about this file format here.
static readonly Ost Offline Storage Table (OST) file represents user’s mailbox data in offline mode on local machine upon registration with Exchange Server using Microsoft Outlook. Learn more about this file format here.
static readonly Pst Files with .pst extension represent Outlook Personal Storage Files (also called Personal Storage Table) that store variety of user information. Learn more about this file format here.
static readonly Tnef Transport Neutral Encapsulation Format (TNEF) is a Microsoft proprietary format for encapsulating email attachments based on Messaging Application Programming Interface (MAPI). Learn more about this file format here.
static readonly Vcf VCF (Virtual Card Format) or vCard is a digital file format for storing contact information. Learn more about this file format here.

Remarks

Learn more about emails format here.

See Also