from typing import List,Union
from app.utils.schemas_utils import CustomModel


class SendMailCreate(CustomModel):
    from_mail : str
    to_mail : Union[str, List[str]] 
    subject : str
    body : str