mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-11 16:34:39 +08:00
17 lines
221 B
PHP
17 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
namespace MailSo\Mime\Enumerations;
|
||
|
|
||
|
/**
|
||
|
* @category MailSo
|
||
|
* @package Mime
|
||
|
* @subpackage Enumerations
|
||
|
*/
|
||
|
class Constants
|
||
|
{
|
||
|
const TAB = "\t";
|
||
|
const CRLF = "\r\n";
|
||
|
|
||
|
const LINE_LENGTH = 74;
|
||
|
}
|