mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
39 lines
681 B
PHP
39 lines
681 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;
|
|
|
|
/**
|
|
* SMTP auth types enum.
|
|
*
|
|
* @package phpOMS\Message\Mail
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class SMTPAuthType extends Enum
|
|
{
|
|
public const NONE = '';
|
|
|
|
public const CRAM = 'CRAM-MD5';
|
|
|
|
public const LOGIN = 'LOGIN';
|
|
|
|
public const PLAIN = 'PLAIN';
|
|
|
|
public const XOAUTH2 = 'XOAUTH2';
|
|
}
|