<?php
declare(strict_types=1);

namespace FreshCloud\Mail\MimeEnums;

enum ContentType: string
{
    case Text = 'text';
    case Html = 'html';
    case Multipart = 'multipart';
    case Image = 'image';
    case Audio = 'audio';
    case Video = 'video';
    case Application = 'application';
    case Message = 'message';

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