mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-11 00:13:48 +08:00
17 lines
247 B
PHP
17 lines
247 B
PHP
|
<?php
|
||
|
|
||
|
namespace MailSo\Mime\Enumerations;
|
||
|
|
||
|
/**
|
||
|
* @category MailSo
|
||
|
* @package Mime
|
||
|
* @subpackage Enumerations
|
||
|
*/
|
||
|
class Parameter
|
||
|
{
|
||
|
const CHARSET = 'charset';
|
||
|
const NAME = 'name';
|
||
|
const FILENAME = 'filename';
|
||
|
const BOUNDARY = 'boundary';
|
||
|
}
|