kpinquan/stmp_server
0
1from typing import Dict, List2from pydantic import BaseModel3 4 5class EmailModel(BaseModel):6 headers: Dict[str, str]7 body: str8 content_type: str9 subparts: List["EmailModel"]10 size: int11 1from typing import Dict, List2from pydantic import BaseModel3 4 5class EmailModel(BaseModel):6 headers: Dict[str, str]7 body: str8 content_type: str9 subparts: List["EmailModel"]10 size: int11