Eml
eml is the extension for a file used to hold email. It is used by MS Outlook, Gmail, Thunderbird, and several other email programs.
Contents |
[edit] EML capabilities
An eml file can contain the email as well as attachments. There is some risk in opening attachments as they could be a virus. The formatting is similar to HTML. Internet Explorer, Firefox, or Opera can read an EML file by changing the extension to .MHT and then opening it. Eml uses Base64 for enclosed images.
[edit] MHT
Web document formatted using the MIME (Multipurpose Internet Mail Extensions) HTML or "MHTML" standard; encodes images and other media files referenced by a .HTML document into the same file the HTML is stored in; the data is encoded using .MIME encoding.
Most Web pages viewed in a Web browser only contain HTML and reference images and other media files that are stored in other directories on the server; because all the files are encoded into a single file in a MHTML document that has an extension of .MHT. MHT files are commonly used to archive Web pages.
Some browsers such as Internet Explorer, Firefox, and Opera can read MHT files. MS Word can edit this files and save in this format.
[edit] Sample
Content-type: multipart/mixed; boundary="someMagicString" The general format of a multipart MIME message will be the following: To: whoever@someplace.com Subject: MIME test Content-type: multipart/mixed; boundary="theBoundaryString" --theBoundaryString Plain text message goes in this part. Notice that it has a blank line before it starts, meaning that this part has no additional headers. --theBoundaryString Content-Type: text/html Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-Base: "http://somewebsite.com/" <body><font size=4>This</font> is a <i>test</i>. --theBoundaryString--
[edit] For more information
- MIME encode standard for HTML documents
- https://en.wikipedia.org/wiki/Email