mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-10 07:53:44 +08:00
16 lines
247 B
PHP
16 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';
|
|
}
|