mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
39 lines
663 B
PHP
Executable File
39 lines
663 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Message\Mail
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Message\Mail;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Encoding enum.
|
|
*
|
|
* @package phpOMS\Message\Mail
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class EncodingType extends Enum
|
|
{
|
|
public const E_7BIT = '7bit';
|
|
|
|
public const E_8BIT = '8bit';
|
|
|
|
public const E_BASE64 = 'base64';
|
|
|
|
public const E_BINARY = 'binary';
|
|
|
|
public const E_QUOTED = 'quoted-printable';
|
|
}
|