Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Mime.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
7 namespace Magento\Framework\HTTP;
8 
12 class Mime
13 {
14  const TYPE_OCTETSTREAM = 'application/octet-stream';
15  const TYPE_TEXT = 'text/plain';
16  const TYPE_HTML = 'text/html';
17  const ENCODING_7BIT = '7bit';
18  const ENCODING_8BIT = '8bit';
19  const ENCODING_QUOTEDPRINTABLE = 'quoted-printable';
20  const ENCODING_BASE64 = 'base64';
21  const DISPOSITION_ATTACHMENT = 'attachment';
22  const DISPOSITION_INLINE = 'inline';
23  const LINELENGTH = 72;
24  const LINEEND = "\n";
25  const MULTIPART_ALTERNATIVE = 'multipart/alternative';
26  const MULTIPART_MIXED = 'multipart/mixed';
27  const MULTIPART_RELATED = 'multipart/related';
28 }
const ENCODING_QUOTEDPRINTABLE
Definition: Mime.php:19