mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-11 08:23:42 +08:00
16 lines
221 B
PHP
16 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;
|
|
}
|