mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
39 lines
697 B
PHP
39 lines
697 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package phpOMS\Message\Mail
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Message\Mail;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Dsn notification types enum.
|
|
*
|
|
* @package phpOMS\Message\Mail
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class DsnNotificationType extends Enum
|
|
{
|
|
public const NONE = '';
|
|
|
|
public const NEVER = 'NEVER';
|
|
|
|
public const SUCCESS = 'SUCCESS';
|
|
|
|
public const FAILURE = 'FAILURE';
|
|
|
|
public const DELAY = 'DELAY';
|
|
}
|