<?php
declare(strict_types=1);

namespace FreshCloud\Mail\MimeEnums;

enum TransferEncoding: string
{
    case SevenBit = '7bit';
    case EightBit = '8bit';
    case Binary = 'binary';
    case QuotedPrintable = 'quoted-printable';
    case Base64 = 'base64';

    public function getLowercase(): string
    {
        return strtolower($this->value);
    }
}