1<?php
2
3/*
4 * This file is part of MailSo.
5 *
6 * (c) 2014 Usenko Timur
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace MailSo\Base\Enumerations;
13
14/**
15 * @category MailSo
16 * @package Base
17 * @subpackage Enumerations
18 */
19class Encoding
20{
21	const QUOTED_PRINTABLE = 'Quoted-Printable';
22	const QUOTED_PRINTABLE_LOWER = 'quoted-printable';
23	const QUOTED_PRINTABLE_SHORT = 'Q';
24
25	const BASE64 = 'Base64';
26	const BASE64_LOWER = 'base64';
27	const BASE64_SHORT = 'B';
28
29	const SEVEN_BIT = '7bit';
30	const _7_BIT = '7bit';
31	const EIGHT_BIT = '8bit';
32	const _8_BIT = '8bit';
33}
34